Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 2.88 KB

File metadata and controls

69 lines (50 loc) · 2.88 KB

User-Profile-Management

JavaScript TypeScript Angular Bootstrap Nginx NodeJS ESLint Nodemon NPM Express.js MongoDB Visual Studio Code Ubuntu license

Neosoft

Node

  • Node installation on Windows

    Just go on official Node.js website and download the installer. Also, be sure to have git available in your PATH, npm might need it (You can find git here).

  • Node installation on Ubuntu

    You can install nodejs and npm easily with apt install, just run the following commands.

    # installs nvm (Node Version Manager)
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
    # download and install Node.js (you may need to restart the terminal)
    nvm install 20
    # verifies the right Node.js version is in the environment
    node -v # should print `v20.16.0`
    # verifies the right npm version is in the environment
    npm -v # should print `10.8.1`

If the installation was successful, you should be able to run the following command.

    $ node --version
    20.16.0

    $ npm --version
    10.8.1

    $ cd backend

    $ npm i

    $ npm start

Angular

npm install -g @angular/cli@17

cd frontend

ng serve