Finding unused Scss variables

With any Sass project variables play an important part but they can get out of control and managing them can be difficult at times. During development we are creating new ones, removing them or in some cases not finding a need for them. It’s good practice to ensure your codebase is clean and maintainable, one…

Continue Reading →

Interactively create a package.json file

Until recently I had always thought that package.json files for the node package manager had to be created manually which was a long winded process. Turns out this is not the case and by running a single command it will ask you a bunch of questions, and then write a package.json for you. npm init…

Continue Reading →