Skip to content

Instantly share code, notes, and snippets.

@parro-it
parro-it / index.js
Created November 15, 2017 20:25
index.js
export default function fetchDependenciesAuthors() {
return 42;
}
@parro-it
parro-it / createjs.sh
Created November 15, 2017 20:24
createjs.sh
touch index.js
touch test.js
@parro-it
parro-it / push.sh
Created November 15, 2017 20:16
push.sh
git add .
git commit -m “First commit”
git push — set-upstream origin master
@parro-it
parro-it / push.sh
Created November 15, 2017 20:16
push.sh
git add .
git commit -m “First commit”
git push — set-upstream origin master
@parro-it
parro-it / npm-init-defaults.sh
Created November 15, 2017 20:16
npm-init-defaults.sh
npm config set init-author-name ‘<your name>’
npm config set init-author-email ‘<your email>’
npm config set init-author ‘<your npm username>’
@parro-it
parro-it / index.js
Created November 15, 2017 20:15
index.js
export default function fetchDependenciesAuthors() {
return 42;
}
@parro-it
parro-it / gitignore.sh
Created November 15, 2017 20:15
gitignore.sh
joe g linux,node,sublimetext > .gitignore
@parro-it
parro-it / dependencies.sh
Created November 15, 2017 20:14
dependencies.sh
npm i -D ava xo
git status
@parro-it
parro-it / create.sh
Created November 15, 2017 20:14
create.sh
mkdir thankyou
cd thankyou
@parro-it
parro-it / configure-git.sh
Last active November 15, 2017 20:21
Scaffold a module blog post code
git init
git remote add origin https://github.com/`npm config get init-author`/thankyou.git