Skip to content

Instantly share code, notes, and snippets.

@httpJunkie
Last active March 9, 2020 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save httpJunkie/e3f1fc9a9726cec987d8deca34c81b13 to your computer and use it in GitHub Desktop.
Save httpJunkie/e3f1fc9a9726cec987d8deca34c81b13 to your computer and use it in GitHub Desktop.
File New Project JavaScript

mkdir xxx && cd $_ && npm init -y && touch .gitignore && echo "/node_modules/*" >> .gitignore && touch readme.md && echo "# Getting Started" >> readme.md && touch .env && echo -e "user=administrator\npass=password" >> .env && npm i dotenv && git add . && code .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment