Getting Started
#
Step 1: Install Nodejscurl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -sudo apt-get install -y nodejs
#
Step 2: Generate a new projectnpm init @nodosjs projectName
This command performs next actions:
- Generating file structure
- Installing npm dependencies
#
Step 3: Start your websiteRun 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.