4Geeks logo
4Geeks logo

Courses

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.

Coding 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.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

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
  • LearnPack

Edit on Github

Learnpack Quick Start

Getting Started with LearnPack (Quick Start)
Creators
  • Start your first tutorial

Getting Started with LearnPack (Quick Start)

There are two use cases that you can take advantage of when using LearnPack.

The first one is as a creator of interactive tutorials, and the second use case is as a learner, where you will be consuming interactive tutorials created by the creators. Find LearnPack at npm, click to download the package: click here.

✋ Make sure you have node installed before going to the next step!)

Creators

Start your first tutorial

To create your first tutorial, you have to follow these steps:

  1. Install LearnPack globally on your computer by running this command (You should have node installed): $ npm install @learnpack/learnpack -g.
  2. Go to the path where you want to save the tutorial’s repository, and create the directory where you want them to be: $ mkdir name-of-tutorials.
  3. Then run this command to start configuring your tutorial: $ learnpack init.
    This command will ask you everything about your tutorial’s configuration, answer all the questions and your tutorial’s project will be successfully created. These are the questions it will ask you:

First, it will ask you the grading type (Grading Tutorials) you want for your tutorial:

A) Incremental: In this type of exercise you can’t go to the next exercise until you pass the test of the current one. It is incremental, so further exercises require the knowledge of previous exercises.

B) Isolated: Each exercise is independent so you can go to any exercise in the order you prefer. The latest exercises don’t need earlier exercises’ knowledge.

C) No Grading: These exercises aren’t graded, therefore they don’t have tests.

learnpack grading ​​ 4. Next, it will ask for the tutorial’s title.

learnpack tutorial title ​​ 5. It should ask for the description after the title.

learnpack tutorial description​​

  1. Then it will ask you for the difficulty of your tutorial exercises (Beginner, Easy, Intermediate, Hard). ​​
  2. The next question will be how many hours it should take to complete the tutorial. ​​ It will create all the files of your tutorial.
    This is what your project should look like:

​​ Now you have to add the folder of each of the exercises that you are going to add to your tutorial with a structure similar to the one created by the command $ learnpack init.

It should have the README.md file, the test file, and the entry file (usually called app.<ext> where the extension (ext) depends on the learning language. For example, if we are building a Python tutorial, it will be app.py (this name can be overridden on the configuration options.

The last two files depend on the language you are using.

Learners

  1. To install the LearnPack CLI, run the npm install @learnpack/learnpack -g.

  2. Install the tutorial you want to use by downloading the repository code, for example: You can use the git clone command to download these exercises:

1$ git clone https://github.com/4GeeksAcademy/javascript-beginner-exercises-tutorial
  1. Install the LearnPack plugin that you need depending on the programming language that the tutorial uses, for example, for installing the javascript plugin you can run learnpack plugins:install learnpack-node.

🔥 Here is more information about LearnPack Compiler Plugins.

After installing everything, the last step to start using LearnPack, is running the command learnpack start Ready to start learning!