Factsheet
Can anyone recommend me projects in GitHub which follows node js best practices?.
How to run an existing node app from github?
NPM is joining GitHub and is now owned by Microsoft
GitHub - TRUEPIC/queryql: Easily add filtering, sorting, and pagination to your Node.js REST API through your old friend: the query string!
Videos
You have first to clone your repo:
git clone https://github.com/albinotonnina/albinotonnina.com your-destination-folder
then when the repository has been cloned:
cd your-destination-folder
npm install # installing the dependencies
npm start # or 'node .'
Clone documentation https://git-scm.com/docs/git-clone Npm start documentation https://docs.npmjs.com/cli/start.html
I've seen that maybe the build process is requested for that project: as they say in the Readme.MD you have to build the app like this:
npm run buildOr
npm run devfor running in dev the project. Inside the package.json you can see what this commands do under the hood.
What you are trying to achieve is "cloning" a git repo on your local So, you might wanna look here -
https://help.github.com/en/articles/cloning-a-repository
https://confluence.atlassian.com/bitbucket/clone-a-repository-223217891.html
Also, I strongly recommend going through some Git basics, probably here
https://git-scm.com/book/en/v2