Skip to content

dscleadcity/command-line-tips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Command line tips

Here are some helpful command-line tips:

  1. Changing folders
cd <name-of-folder>
  1. Displaying folder contents
ls
  1. Creating folders
mkdir <name-of-folder>


npm & Yarn

  • Initializing/starting NodeJS project

npm

npm init

Yarn

yarn init

  • Adding files

npm

npm install <package-name>

Yarn

yarn add <package-name>

  • Removing files

npm

npm uninstall <package-name>

Yarn

yarn remove <package-name>

About

Here are some helpful command-line tips. NPM and Yarn included...

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors