How to Install a Module/Package/Library in NodeJs
Do you need to install a NodeJs module/package/library? First create the project directory: mkdir TestProject cd TestProjectmkdir TestProject cd TestProject Make the directory the root of your project: npm init –yesnpm init –yes Install the required NodeJs modules/packages (i.e “request”): npm install request –savenpm install request –save * With -save parameter, the installed modules will […]