Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Simple new-node-project
  4. project_name=$1
  5.  
  6. echo "new-node-project $project_name"
  7. mkdir -p $project_name
  8. cd $project_name
  9.  
  10. git init
  11. npx gitignore node
  12. npm init -y
  13.  
  14. git add -A
  15. git commit -m "Initial commit"
  16.  
  17. code .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement