Skip to content

Instantly share code, notes, and snippets.

@YamilG
Created May 1, 2020 18:43
Show Gist options
  • Save YamilG/0ab79ff884a2c1816eaa4f3e64a8a6ff to your computer and use it in GitHub Desktop.
Save YamilG/0ab79ff884a2c1816eaa4f3e64a8a6ff to your computer and use it in GitHub Desktop.
Node Project Init
function node-project {
git init
npx license $(npm get init.license) -o "$(npm get init.author.name)" > LICENSE
npx gitignore node
npx covgen "$(npm get init.author.email)"
npm init -y
git add -A
git commit -m "Initial commit"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment