I believe package.json
has all the dependencies we use for UndocuScholar Web.
- Install npm.
- The
npm
command should work on your terminal/Git Bash. - Clone this repo somewhere. (Possibly your desktop)
- Open your terminal and
cd
into this repo. - Type
npm install
.
A folder node_modules
has been created. Voila, that's how we manage dependencies on third party libraries. All we need to do in the main repo is have the package.json file and then from the app's end associate the path with static files and use that path in the HTML templates we write. This way we don't git add
all these dependencies into our repo, cluttering our files.