Skip to content

Instantly share code, notes, and snippets.

@grandadmiral-thrawn
Created August 31, 2015 04:43
Show Gist options
  • Save grandadmiral-thrawn/ba5010fd0619b61da3b3 to your computer and use it in GitHub Desktop.
Save grandadmiral-thrawn/ba5010fd0619b61da3b3 to your computer and use it in GitHub Desktop.
Basic File Structure for Node Apps
#!/bin/sh
mkdir nodeapp
cd nodeapp
mkdir public
mkdir templates
cd public
mkdir css
mkdir images
mkdir js
cd js
touch app.js
cd ..
cd ..
touch .gitignore
touch Profile
touch README.md
touch CONTRIBUTING.md
touch app.json
touch index.js
touch config.json
touch package.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment