Posts

Showing posts from April, 2021
Image
  Why should you choose yarn over npm   What is Yarn? Yarn is a JavaScript package manager created by Facebook. Yarn stands for Yet Another Resource Negotiator. It provides similar functionalities as NPM. It is an alternative to NPM when installing, uninstalling, and managing package dependencies from the NPM registry or GitHub repositories. Installation NPM is bundled with Node.js Runtime . It is Node.js Default Package Manager. In other words, when you install Node.js , NPM gets installed. To install a package using NPM, you use the syntax below. npm install <package name> . The package name can be any package you want to use in your project. For example, to install Express run npm install express . Some more distinct NPM package installation include: npm installs <package name> -- global . These are packages you install into your computer system’s local path and not your project location. Such packages can be used or accessed by any project you create.
Image
  C++ Core Guidelines     March 11, 2021 Editors: Bjarne Stroustrup Herb Sutter This is a living document under continuous improvement. Had it been an open-source (code) project, this would have been release 0.8. Copying, use, modification, and creation of derivative works from this project is licensed under an MIT-style license. Contributing to this project requires agreeing to a Contributor License. See the accompanying LICENSE file for details. We make this project available to "friendly users" to use, copy, modify, and derive from, hoping for constructive input. Comments and suggestions for improvements are most welcome. We plan to modify and extend this document as our understanding improves and the language and the set of available libraries improve. When commenting, please note the introduction that outlines our aims and general approach. The list of contributors is here . Problems: The sets of rules have not been completely checked for completeness, consiste