Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

Idea!!

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.

Programming Languages/Tools

Angular js
WebApi
Visual Studio Code
Visual Studio

Installation

Angular js

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