2023-04-03

Node.js

https://github.com/nodejs/help/wiki/Installation

https://www.youtube.com/watch?v=Gx4iBLKLVHk&list=PLwvrYc43l1Mz_c-vV1yVyvFNFZPAleSNE&index=8

1) Download zip from https://nodejs.org/en 

2) Unzip and add to .bashrc

export NODE_HOME=/home/encaps/Downloads/node-v18.15.0-linux-x64/

export PATH=$PATH:$NODE_HOME/bin

3) https://angular.io/cli

node install -g @angular/cli

HTTPie https://youtu.be/Gx4iBLKLVHk?list=PLwvrYc43l1Mz_c-vV1yVyvFNFZPAleSNE&t=3524

Nodejs app: https://www.youtube.com/watch?v=6YisG2GcXaw&list=PLy7NrYWoggjwPggqtFsI_zMAwvG0SqYCb&index=8

ng new my-first-project
cd my-first-project
ng serve
ng generate service item --skip-tests=true

git config credential.helper store
git config credential.helper 'cache --timeout 36000' # 10 hours
or

git config --global credential.helper credential.helper store 
git config --global credential.helper 'cache --timeout 7200'

No comments: