skip to Main Content

Javascript – How can I fix the error: "{ "message": "Cannot PUT /app-user", "error": "Not Found", "statusCode": 404 }" while making a POST request in Postman?

**Entity code ** import { Entity, PrimaryGeneratedColumn, Column } from 'typeorm'; @Entity({ name: 'app_user' }) export class User { @PrimaryGeneratedColumn({ name: 'user_id' }) userId: number; @Column({ name: 'username', type: 'varchar', length: 255, unique: true }) username: string; @Column({ name: 'user_password',…

VIEW QUESTION

Ubuntu – Nest js npm run start failing

I have installed fresh Nest js on new EC2 machine but when I am running it for the very first time it gives following error (looks like npm install fails abrubtly whithout any visible error) : ubuntu@ip-172-31-15-190:~/projects/mynestjs$ npm run start:dev…

VIEW QUESTION
Back To Top
Search