Getting Started
Step 1: Install Nodejs#
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -sudo apt-get install -y nodejsStep 2: Generate a new project#
npm init @nodosjs projectName This command performs next actions:
- Generating file structure
- Installing npm dependencies
Step 3: Start your website#
Run the development server in the newly created projectName directory:
cd projectNamenpx nodos startThen open http://localhost:8080
That's it!#
Congratulations! You've successfully setup and run Nodosjs project.