/Proxy-pattern-MrMeeseks-JS

Implementation of the proxy pattern with JavaScripts. This is the first project made in JS to understand how the prototype delegation is created and it's suposed to be an introfduction of the JS paradigm

Primary LanguageJavaScriptMIT LicenseMIT

Proxy-pattern-MrMeeseks-JS

NPM Commands

Check version NPM and node

First of all you should start checking that you've NPM and node installed into your machine, to know that type the following commands into the terminal:

  • $ node -v
  • $ npm -v
Start npm package

Now that we check that you've got your package manager isntalled you can proceed with the package structure creation for your project:

  • $ npm init
Install dependencies

To install dependencies on your project with npm:

  • $ npm i <dependency name>

To install a dev dependency on your project:

  • $ npm i <dependency name> --save-dev