Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 350 Bytes

initialize-node.md

File metadata and controls

24 lines (15 loc) · 350 Bytes

Initialize Node

Node is powerfull 💪

Steps

  1. Open terminal

  2. Go to the project's directory

  cd my-directory
  1. Execute the following command
  npm init

  # if you want to create with the default properties
  npm init -y

You are now ready to install dependencies or to just run javascript files via terminal!