hello-node

Getting Started

Prerequisites

Required Description
Git We follow the GitHub Flow
Node.js v12.18.3 LTS
Yarn 1.22.5 or above

Install Node, Yarn

The project manages the version of node through nvm.

NVM(Node Version Manager)

$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
$ command -v nvm

Node.js

$ nvm install 12.18.3
$ command -v node

Yarn

$ npm install -g yarn
$ command -v yarn

In the project root as follows are performed through the .nvmrc

$ nvm use
...

Yarn CLIs

Install project

$ nvm use
$ yarn install

Test

$ yarn test