Skip to content

Instantly share code, notes, and snippets.

View Toltar's full-sized avatar
👨‍💻
Coding

Matthew Dickens Toltar

👨‍💻
Coding
View GitHub Profile
@Toltar
Toltar / 0_reuse_code.js
Last active August 29, 2015 14:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@Toltar
Toltar / npm-removal commands
Created July 14, 2015 15:28
Commands to uninstall modules and directories
//The -g flag is if you want to uninstall globally a package
//The -r flag is the recursive flag
//I will mark it as [-g] and [-r] as optional
npm rm[-r] <name>
npm r[-r] <name>
npm uninstall [-g] <name>
npm un [-g] <name>