Looking to improve the safety and security of NPM JavaScript packages, GitHub is adding granular access tokens to enable fine-grained permissions for NPM accounts, and making its NPM code explorer capability free to users. GitHub on December 6 explained that stolen credentials are a main cause of data breaches. To […]
NPM
How to use NPM Chalk to colorize and format your console output
Imagine your console.log being able to show multiple colors. Not only would it be colorful but it will also be helpful. This is where the NPM chalk module comes in very handy. With the NPM chalk module, you can sprinkle multiple colors to your boring black-and-white console output and format […]
How to run multiple NPM commands simultaneously using concurrently
Two or more NPM commands can be run simultaneously with the NPM concurrently package. A simple use case for this can be when you want to run the server and the client in parallel for a JavaScript project. In this post, you will learn how to use the concurrently NPM […]