nvm install 14.17.1
Library for creating app servers using nodejs.
npm install express
// server.js
const express = require('express')
const app = express()
app.get('/', (req, res)
app.listen(4445, () => {
console.log('Server started on http://localhost:4445')
})
Enter PSQL for Postgres
# Linux
sudo -u postgres psql
# Mac
psql postgres
Create Database, User and Grant Privilege
Postgres
create database sclrac;
create user sclrac with encrypted password 'sclrac';
grant all privileges on sclrac.* to sclrac;
MySQL
create database sclrac;
create user sclrac identified by 'sclrac';
grant all privileges on sclrac.* to sclrac;