Skip to main content

Getting Started

Step 1: Install Nodejs#

curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -sudo apt-get install -y nodejs

Step 2: Generate a new project#

npm init @nodosjs projectName 

This command performs next actions:

  1. Generating file structure
  2. Installing npm dependencies

Step 3: Start your website#

Run the development server in the newly created projectName directory:

cd projectNamenpx nodos start

Then open http://localhost:8080

That's it!#

Congratulations! You've successfully setup and run Nodosjs project.