I'm very new to JavaScript application development, had few tutorials here and there, but nothing much to write home about. :)
- I am trying to run this app/website on my PC:
- Downloaded/cloned source code from github
- Node is installed on my windows 10 PC
I've no idea how to start this app. Can anyone please help me with starting this on localserver?
Thank you.
I'm very new to JavaScript application development, had few tutorials here and there, but nothing much to write home about. :)
- I am trying to run this app/website on my PC: https://github./albinotonnina/albinotonnina.
- Downloaded/cloned source code from github
- Node is installed on my windows 10 PC
I've no idea how to start this app. Can anyone please help me with starting this on localserver?
Thank you.
Share Improve this question edited Sep 17, 2019 at 14:05 Asad Malik asked Sep 17, 2019 at 13:58 Asad MalikAsad Malik 7942 gold badges9 silver badges24 bronze badges2 Answers
Reset to default 11You have first to clone your repo:
git clone https://github./albinotonnina/albinotonnina. 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./docs/git-clone Npm start documentation https://docs.npmjs./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 build
Or
npm run dev
for running in dev the project. Inside the package.json you can see what this mands 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./en/articles/cloning-a-repository
https://confluence.atlassian./bitbucket/clone-a-repository-223217891.html
Also, I strongly remend going through some Git basics, probably here
https://git-scm./book/en/v2