npm Learning Course

I do not know what's good name

Enter  https://nodeschool.io/zh-cn / , you can see the many courses.

Most of these courses for zero-based, very interesting (similar to many levels of the game).

Quick Start

First, make sure your computer has been installed  Node.js  , because then we will have to use it. Then use the command  npm  (Node.js comes with a tool) to install the following tutorial. Once the installation is complete, the name of teaching these courses will be one computer commands, you can in a terminal window, enter the name of the direct teaching of these courses to perform.

For example to javascripting

Based learning JavaScript language, without any programming experience.

(I) install javascript course

Open your terminal and run the following command:

npm install -g javascripting

-g option means that this module is installed in the global, that it can be run as a command terminal.

(Ii) into the curriculum

Open a terminal run the following command:

javascripting

You will see this menu bar:

 

 Use the arrow keys to select, Enter key.

There is a first challenge of gif:

Used in this gif the editor is nano (which has some nano basic use )

Of course, you can use any of your favorite editor, for example: AtomSublime Text , Visual Studio Code  or  Brackets .  

Other tutorials

还有很多有趣的教程,

  • Web Audio School:"百万调音师"
  • NodeBot Workshop:用 john-five API,打造自己的机器人。既能完全虚拟,又能运行于真实的Arduino
  • ......

 

 

参考链接:

1. https://nodeschool.io/zh-cn/

2. https://github.com/workshopper/javascripting

Guess you like

Origin www.cnblogs.com/lfri/p/11519966.html