nodestartup

How to start a fresh project from a newly installed computer.

Usage no npm install needed!

<script type="module">
  import nodestartup from 'https://cdn.skypack.dev/nodestartup';
</script>

README

NodeStartup

How to start a fresh project from a newly installed computer.

  1. Download NodeJS
  • Install NodeJS (default Settings)
  • open CMD, Navigate to installed path. $ npm install npm@latest
  • check version $ npm version
  1. Create a new folder for your project. (any directory)
  • open CMD, Navigate to project folder. $ npm install npm@latest
  • check version $ npm version
  1. Inside new project create a sample file test.js
  • Inside new file test.js, enter code console.log("it Works!");
  • open CMD, run sample file $ node test.js
  1. Create package.JSON