Build an app to maintain memories in private include pics, videos with comments.
Should be easy to create posts and also easy to view and filter.
WebApi
Visual Studio Code
Visual Studio
Install Node js from the following links : https://nodejs.org/en/download/
Follow the angular CLI installation from the following link : https://angular.io/guide/quickstart --> Do not use node js command prompt
Some installation issues :
Issue 1 : Some common error ssl-error-cert-untrusted-while-using-npm-command
Solution: bypass https using below commands
npm config set strict-ssl false
or
set the registry from https to http like below : npm config set registry="http://registry.npmjs.org/"
Issue 2 : Unable to verify the first certificate Solution: by pass the restriction by setting the environment variable From the terminal type the below command:
set NODE_TLS_REJECT_UNAUTHORIZED=0