Self-paced

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Bootcamp

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Search from all Lessons


LoginGet Started
← Back to Lessons
Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge
Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast
Edit on Github

Introduction For Teachers

How to teach with LearnPack?

How to teach with LearnPack?

LearnPack consists of several connected applications, a CLI that allows you to install plugins, start tutorials, or restart them completely to delete temporary files. In addition to a VSCode extension that allows you to open a React interface so that the student can read the instructions, run their code, talk to Rigobot AI, and perform more actions.

LearnPack CLI

LearnPack courses consist of different exercises that are stored within an exercises directory. Here you can see an example:

Example files

Let me explain what each file is for:

  • README.md: These are the instructions for each of the exercises, in this case in English by default. You can add more languages by adding the language extension, for example, for Spanish: README.es.md
  • app.js / app.py / index.html: This is the main file that the student will need to edit, you can have default content or start from scratch, depending on how you want to do the course. LearnPack will automatically open this file when the student is on the exercise.
  • test(s).js / test(s).py: These are the files for testing the student's code, they are optional, if the tutorial is for: Node, Dom, HTML, or React, you should use test.js, if it is for Python, then you will use test.py. In the case of Javascript, the tests are evaluated using Jest, in the case of Python, with Pytest.
  • solution.hide.html / solution.hide.js / solution.hide.css / solution.hide.py: These are files that contain the solution to the exercise problem, it is optional, you can include it to ensure that the student can pass the tutorial without problems.

Additionally, if you add any other file, LearnPack will also open it for the student when they are in the exercise, feel free to add all the necessary files for the exercise.