Prisma.js
$ npm install prisma
$ npx prisma init --datasource-provider sqlite
✔ Your Prisma schema was created at prisma/schema.prisma
You can now open it in your favorite editor.
Next steps:
1. Set the DATABASE_URL in the .env file to point to your existing database. If your database has no tables yet, read https://pris.ly/d/getting-started
2. Run prisma db pull to turn your database schema into a Prisma schema.
3. Run prisma generate to generate the Prisma Client. You can then start querying your database.
4. Tip: Explore how you can extend the ORM with scalable connection pooling, global caching, and real-time database events. Read: https://pris.ly/cli/beyond-orm
More information in our documentation:
https://pris.ly/d/getting-started
$ npm install prisma
$ npx prisma init --datasource-provider sqlite
✔ Your Prisma schema was created at prisma/schema.prisma
You can now open it in your favorite editor.
Next steps:
1. Set the DATABASE_URL in the .env file to point to your existing database. If your database has no tables yet, read https://pris.ly/d/getting-started
2. Run prisma db pull to turn your database schema into a Prisma schema.
3. Run prisma generate to generate the Prisma Client. You can then start querying your database.
4. Tip: Explore how you can extend the ORM with scalable connection pooling, global caching, and real-time database events. Read: https://pris.ly/cli/beyond-orm
More information in our documentation:
https://pris.ly/d/getting-started
Arquivos
monitor-app-prismajs-simple
├── back
│ ├── package-lock.json
│ ├── package.json
│ ├── prisma
│ │ ├── dev.db
│ │ ├── migrations
│ │ │ ├── 20240228124425_init
│ │ │ │ └── migration.sql
│ │ │ └── migration_lock.toml
│ │ ├── schema.prisma
│ │ ├── seed.js
│ │ └── seeders.json
│ ├── requests.http
│ └── src
│ ├── database
│ │ └── database.js
│ ├── index.js
│ ├── models
│ │ └── Hosts.js
│ ├── routes.js
│ └── routes.test.js
└── front
├── css
│ └── style.css
├── index.html
├── js
│ ├── components
│ │ ├── HostForm.js
│ │ ├── HostTableRow.js
│ │ └── Modal.js
│ ├── lib
│ │ ├── dom.js
│ │ └── hosts.js
│ ├── main.js
│ └── services
│ └── storage.js
├── package-lock.json
├── package.json
├── public
│ └── vite.svg
└── vite.config.js
Arquivos
monitor-app-prismajs-simple
├── back
│ ├── package-lock.json
│ ├── package.json
│ ├── prisma
│ │ ├── dev.db
│ │ ├── migrations
│ │ │ ├── 20240228124425_init
│ │ │ │ └── migration.sql
│ │ │ └── migration_lock.toml
│ │ ├── schema.prisma
│ │ ├── seed.js
│ │ └── seeders.json
│ ├── requests.http
│ └── src
│ ├── database
│ │ └── database.js
│ ├── index.js
│ ├── models
│ │ └── Hosts.js
│ ├── routes.js
│ └── routes.test.js
└── front
├── css
│ └── style.css
├── index.html
├── js
│ ├── components
│ │ ├── HostForm.js
│ │ ├── HostTableRow.js
│ │ └── Modal.js
│ ├── lib
│ │ ├── dom.js
│ │ └── hosts.js
│ ├── main.js
│ └── services
│ └── storage.js
├── package-lock.json
├── package.json
├── public
│ └── vite.svg
└── vite.config.js
Migration
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/schema.prisma
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model Host {
id String @id @default(uuid())
name String
address String
}
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/schema.prisma
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "sqlite"
url = env("DATABASE_URL")
}
model Host {
id String @id @default(uuid())
name String
address String
}
Tabela Host
:
/codes/expressjs/monitor-app-prismajs-simple/back/.env.example
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL="file:./dev.db"
/codes/expressjs/monitor-app-prismajs-simple/back/.env.example
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
DATABASE_URL="file:./dev.db"
$ npx prisma migrate dev --name init
$ npx prisma studio
$ npx prisma migrate reset
$ npx prisma db push --force-reset
$ npx prisma migrate dev --name init
$ npx prisma studio
$ npx prisma migrate reset
$ npx prisma db push --force-reset
Seed
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/seed.js
import { resolve } from 'node:path';
import { readFileSync } from 'node:fs';
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient();
async function main() {
const file = resolve('prisma', 'seeders.json');
const seed = JSON.parse(readFileSync(file));
for (const host of seed.hosts) {
await prisma.host.create({
data: host,
});
}
}
main()
.then(async () => {
await prisma.$disconnect();
})
.catch(async (e) => {
console.error(e);
await prisma.$disconnect();
process.exit(1);
});
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/seed.js
import { resolve } from 'node:path';
import { readFileSync } from 'node:fs';
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient();
async function main() {
const file = resolve('prisma', 'seeders.json');
const seed = JSON.parse(readFileSync(file));
for (const host of seed.hosts) {
await prisma.host.create({
data: host,
});
}
}
main()
.then(async () => {
await prisma.$disconnect();
})
.catch(async (e) => {
console.error(e);
await prisma.$disconnect();
process.exit(1);
});
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/seeders.json
{
"hosts": [
{
"id": "e4cfb6bb-4431-42a9-b660-d5701b2f49cd",
"name": "Google DNS",
"address": "8.8.8.8"
},
{
"id": "a2bb615a-6153-41bf-8cbe-0bfb538ce511",
"name": "Google Search",
"address": "www.google.com"
}
]
}
/codes/expressjs/monitor-app-prismajs-simple/back/prisma/seeders.json
{
"hosts": [
{
"id": "e4cfb6bb-4431-42a9-b660-d5701b2f49cd",
"name": "Google DNS",
"address": "8.8.8.8"
},
{
"id": "a2bb615a-6153-41bf-8cbe-0bfb538ce511",
"name": "Google Search",
"address": "www.google.com"
}
]
}
/codes/expressjs/monitor-app-prismajs-simple/back/package.json
{
"name": "invest-app",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"db:reset": "prisma migrate reset --force",
"test": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src",
"test:coverage": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src --coverage"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"jest": {
"collectCoverage": true,
"testTimeout": 20000,
"coverageReporters": [
"json",
"html"
]
},
"dependencies": {
"@prisma/client": "^5.10.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"prisma": "^5.10.2",
"sqlite-async": "^1.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4"
}
}
/codes/expressjs/monitor-app-prismajs-simple/back/package.json
{
"name": "invest-app",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"db:reset": "prisma migrate reset --force",
"test": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src",
"test:coverage": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src --coverage"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"jest": {
"collectCoverage": true,
"testTimeout": 20000,
"coverageReporters": [
"json",
"html"
]
},
"dependencies": {
"@prisma/client": "^5.10.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"prisma": "^5.10.2",
"sqlite-async": "^1.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4"
}
}
$ npx prisma db seed
$ npx prisma studio
$ npx prisma db seed
$ npx prisma studio
$ sqlite3 dev.db .dump > dev.sql
$ sqlite3 dev.db .dump > dev.sql
Model
/codes/expressjs/monitor-app-prismajs-simple/back/src/database/database.js
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient({
log: ['query', 'info', 'warn', 'error'],
});
export default prisma;
/codes/expressjs/monitor-app-prismajs-simple/back/src/database/database.js
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient({
log: ['query', 'info', 'warn', 'error'],
});
export default prisma;
/codes/expressjs/monitor-app-prismajs-simple/back/src/models/Hosts.js
import prisma from '../database/database.js';
async function create({ name, address }) {
const createdHost = await prisma.host.create({
data: { name, address },
});
return createdHost;
}
async function read(where) {
if (where?.name) {
where.name = {
contains: where.name,
};
}
const hosts = await prisma.host.findMany({ where });
if (hosts.length === 1 && where) {
return hosts[0];
}
return hosts;
}
async function readById(id) {
const host = await prisma.host.findUnique({
where: {
id,
},
});
return host;
}
async function update({ id, name, address }) {
const updatedHost = await prisma.host.update({
where: {
id,
},
data: { name, address },
});
return updatedHost;
}
async function remove(id) {
await prisma.host.delete({
where: {
id,
},
});
}
export default { create, read, readById, update, remove };
/codes/expressjs/monitor-app-prismajs-simple/back/src/models/Hosts.js
import prisma from '../database/database.js';
async function create({ name, address }) {
const createdHost = await prisma.host.create({
data: { name, address },
});
return createdHost;
}
async function read(where) {
if (where?.name) {
where.name = {
contains: where.name,
};
}
const hosts = await prisma.host.findMany({ where });
if (hosts.length === 1 && where) {
return hosts[0];
}
return hosts;
}
async function readById(id) {
const host = await prisma.host.findUnique({
where: {
id,
},
});
return host;
}
async function update({ id, name, address }) {
const updatedHost = await prisma.host.update({
where: {
id,
},
data: { name, address },
});
return updatedHost;
}
async function remove(id) {
await prisma.host.delete({
where: {
id,
},
});
}
export default { create, read, readById, update, remove };
Router
/codes/expressjs/monitor-app-prismajs-simple/back/src/routes.js
import express from 'express';
import Host from './models/Hosts.js';
class HttpError extends Error {
constructor(message, code = 400) {
super(message);
this.code = code;
}
}
const router = express.Router();
router.post('/hosts', async (req, res) => {
const { name, address } = req.body;
if (!name || !address) {
throw new HttpError('Error when passing parameters');
}
try {
const createdHost = await Host.create({ name, address });
return res.status(201).json(createdHost);
} catch (error) {
throw new HttpError('Unable to create a host');
}
});
router.get('/hosts', async (req, res) => {
const { name } = req.query;
try {
if (name) {
const filteredHosts = await Host.read({ name });
return res.json(filteredHosts);
}
const hosts = await Host.read();
return res.json(hosts);
} catch (error) {
throw new HttpError('Unable to read hosts');
}
});
router.get('/hosts/:id', async (req, res) => {
const { id } = req.params;
try {
const host = await Host.readById(id);
if (host) {
return res.json(host);
} else {
throw new HttpError('Host not found');
}
} catch (error) {
throw new HttpError('Unable to read a host');
}
});
router.put('/hosts/:id', async (req, res) => {
const { name, address } = req.body;
const id = req.params.id;
if (!name || !address) {
throw new HttpError('Error when passing parameters');
}
try {
const updatedHost = await Host.update({ id, name, address });
return res.json(updatedHost);
} catch (error) {
throw new HttpError('Unable to update a host');
}
});
router.delete('/hosts/:id', async (req, res) => {
const { id } = req.params;
try {
await Host.remove(id);
return res.send(204);
} catch (error) {
throw new HttpError('Unable to delete a host');
}
});
// 404 handler
router.use((req, res, next) => {
return res.status(404).json({ message: 'Content not found!' });
});
// Error handler
router.use((err, req, res, next) => {
// console.error(err.message);
console.error(err.stack);
if (err instanceof HttpError) {
return res.status(err.code).json({ message: err.message });
}
// next(err);
return res.status(500).json({ message: 'Something broke!' });
});
export default router;
/codes/expressjs/monitor-app-prismajs-simple/back/src/routes.js
import express from 'express';
import Host from './models/Hosts.js';
class HttpError extends Error {
constructor(message, code = 400) {
super(message);
this.code = code;
}
}
const router = express.Router();
router.post('/hosts', async (req, res) => {
const { name, address } = req.body;
if (!name || !address) {
throw new HttpError('Error when passing parameters');
}
try {
const createdHost = await Host.create({ name, address });
return res.status(201).json(createdHost);
} catch (error) {
throw new HttpError('Unable to create a host');
}
});
router.get('/hosts', async (req, res) => {
const { name } = req.query;
try {
if (name) {
const filteredHosts = await Host.read({ name });
return res.json(filteredHosts);
}
const hosts = await Host.read();
return res.json(hosts);
} catch (error) {
throw new HttpError('Unable to read hosts');
}
});
router.get('/hosts/:id', async (req, res) => {
const { id } = req.params;
try {
const host = await Host.readById(id);
if (host) {
return res.json(host);
} else {
throw new HttpError('Host not found');
}
} catch (error) {
throw new HttpError('Unable to read a host');
}
});
router.put('/hosts/:id', async (req, res) => {
const { name, address } = req.body;
const id = req.params.id;
if (!name || !address) {
throw new HttpError('Error when passing parameters');
}
try {
const updatedHost = await Host.update({ id, name, address });
return res.json(updatedHost);
} catch (error) {
throw new HttpError('Unable to update a host');
}
});
router.delete('/hosts/:id', async (req, res) => {
const { id } = req.params;
try {
await Host.remove(id);
return res.send(204);
} catch (error) {
throw new HttpError('Unable to delete a host');
}
});
// 404 handler
router.use((req, res, next) => {
return res.status(404).json({ message: 'Content not found!' });
});
// Error handler
router.use((err, req, res, next) => {
// console.error(err.message);
console.error(err.stack);
if (err instanceof HttpError) {
return res.status(err.code).json({ message: err.message });
}
// next(err);
return res.status(500).json({ message: 'Something broke!' });
});
export default router;
/codes/expressjs/monitor-app-prismajs-simple/back/requests.http
@server=http://localhost:3000
@createdHostId = {{createHost.response.body.$.id}}
### Create a host
# @name createHost
POST {{server}}/hosts
Content-Type: application/json
{
"name": "DNS Server",
"address": "1.1.1.1"
}
### Create a host without name or address
POST {{server}}/hosts
Content-Type: application/json
{
"name": "DNS Server"
}
### Read hosts
GET {{server}}/hosts
### Read a host by name
GET {{server}}/hosts?name=Google%20DNS
### Read a host by id
GET {{server}}/hosts/{{createdHostId}}
### Read a host by id with invalid id
GET {{server}}/hosts/x
### Update a host
PUT {{server}}/hosts/{{createdHostId}}
Content-Type: application/json
{
"name": "Cloudflare DNS",
"address": "1.1.1.1"
}
### Update a host without name or address
PUT {{server}}/hosts/{{createdHostId}}
Content-Type: application/json
{
"name": "Cloudflare DNS"
}
### Update a host with invalid id
PUT {{server}}/hosts/x
Content-Type: application/json
{
"name": "Cloudflare DNS",
"address": "1.1.1.1"
}
### Delete a host
DELETE {{server}}/hosts/{{createdHostId}}
### Delete a host with invalid id
DELETE {{server}}/hosts/x
/codes/expressjs/monitor-app-prismajs-simple/back/requests.http
@server=http://localhost:3000
@createdHostId = {{createHost.response.body.$.id}}
### Create a host
# @name createHost
POST {{server}}/hosts
Content-Type: application/json
{
"name": "DNS Server",
"address": "1.1.1.1"
}
### Create a host without name or address
POST {{server}}/hosts
Content-Type: application/json
{
"name": "DNS Server"
}
### Read hosts
GET {{server}}/hosts
### Read a host by name
GET {{server}}/hosts?name=Google%20DNS
### Read a host by id
GET {{server}}/hosts/{{createdHostId}}
### Read a host by id with invalid id
GET {{server}}/hosts/x
### Update a host
PUT {{server}}/hosts/{{createdHostId}}
Content-Type: application/json
{
"name": "Cloudflare DNS",
"address": "1.1.1.1"
}
### Update a host without name or address
PUT {{server}}/hosts/{{createdHostId}}
Content-Type: application/json
{
"name": "Cloudflare DNS"
}
### Update a host with invalid id
PUT {{server}}/hosts/x
Content-Type: application/json
{
"name": "Cloudflare DNS",
"address": "1.1.1.1"
}
### Delete a host
DELETE {{server}}/hosts/{{createdHostId}}
### Delete a host with invalid id
DELETE {{server}}/hosts/x
Teste
$ npm i jest supertest -D
$ npm run test
$ npm i jest supertest -D
$ npm run test
/codes/expressjs/monitor-app-prismajs-simple/back/src/routes.test.js
import request from 'supertest';
import app from './index.js';
let createdHost;
const newHost = {
name: 'DNS Server',
address: '1.1.1.1',
};
const updatedHost = {
name: 'Cloudflare DNS',
address: '1.1.1.1',
};
describe('Moniotr App', () => {
describe('Hosts Endpoints', () => {
describe('POST /hosts', () => {
it('should create a new host', async () => {
const response = await request(app).post('/hosts').send(newHost);
createdHost = response.body;
expect(response.statusCode).toBe(201);
});
it('should not create a new host without name or address', async () => {
const response = await request(app).post('/hosts').send({
name: 'DNS Server',
});
expect(response.statusCode).toBe(400);
});
});
describe('GET /hosts', () => {
it('should show all hosts', async () => {
const response = await request(app).get('/hosts');
expect(response.statusCode).toBe(200);
});
it('should list the valid host', async () => {
const response = await request(app).get('/hosts');
const hasValidHost = response.body.some(
(host) => host.address === createdHost.address
);
expect(hasValidHost).toBeTruthy();
});
it('should show all hosts by name', async () => {
const response = await request(app).get('/hosts?name=DNS');
expect(response.statusCode).toBe(200);
});
});
describe('GET /hosts/:hostId', () => {
it('should show a host by id', async () => {
const response = await request(app).get(`/hosts/${createdHost.id}`);
expect(response.statusCode).toBe(200);
expect(response.body.name).toBe(createdHost.name);
});
it('should not show a host with invalid id', async () => {
const response = await request(app).get(`/hosts/x`);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to read a host');
});
});
describe('PUT /hosts/:hostId', () => {
it('should update a host', async () => {
const response = await request(app)
.put(`/hosts/${createdHost.id}`)
.send(updatedHost);
expect(response.statusCode).toBe(200);
});
it('should list an updated host', async () => {
const response = await request(app).get('/hosts');
const hasValidHost = response.body.some(
(host) => host.address === updatedHost.address
);
expect(hasValidHost).toBeTruthy();
});
it('should not update a host without name or address', async () => {
const response = await request(app)
.put(`/hosts/${createdHost.id}`)
.send({
name: 'Cloudflare DNS',
});
expect(response.statusCode).toBe(400);
});
it('should not update a host with invalid id', async () => {
const response = await request(app).put(`/hosts/x`).send(updatedHost);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to update a host');
});
});
describe('DELETE /hosts/:hostId', () => {
it('should remove a host', async () => {
const response = await request(app).delete(`/hosts/${createdHost.id}`);
expect(response.statusCode).toBe(204);
});
it('should not delete a host with invalid id', async () => {
const response = await request(app).delete(`/hosts/x`);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to delete a host');
});
});
});
});
/codes/expressjs/monitor-app-prismajs-simple/back/src/routes.test.js
import request from 'supertest';
import app from './index.js';
let createdHost;
const newHost = {
name: 'DNS Server',
address: '1.1.1.1',
};
const updatedHost = {
name: 'Cloudflare DNS',
address: '1.1.1.1',
};
describe('Moniotr App', () => {
describe('Hosts Endpoints', () => {
describe('POST /hosts', () => {
it('should create a new host', async () => {
const response = await request(app).post('/hosts').send(newHost);
createdHost = response.body;
expect(response.statusCode).toBe(201);
});
it('should not create a new host without name or address', async () => {
const response = await request(app).post('/hosts').send({
name: 'DNS Server',
});
expect(response.statusCode).toBe(400);
});
});
describe('GET /hosts', () => {
it('should show all hosts', async () => {
const response = await request(app).get('/hosts');
expect(response.statusCode).toBe(200);
});
it('should list the valid host', async () => {
const response = await request(app).get('/hosts');
const hasValidHost = response.body.some(
(host) => host.address === createdHost.address
);
expect(hasValidHost).toBeTruthy();
});
it('should show all hosts by name', async () => {
const response = await request(app).get('/hosts?name=DNS');
expect(response.statusCode).toBe(200);
});
});
describe('GET /hosts/:hostId', () => {
it('should show a host by id', async () => {
const response = await request(app).get(`/hosts/${createdHost.id}`);
expect(response.statusCode).toBe(200);
expect(response.body.name).toBe(createdHost.name);
});
it('should not show a host with invalid id', async () => {
const response = await request(app).get(`/hosts/x`);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to read a host');
});
});
describe('PUT /hosts/:hostId', () => {
it('should update a host', async () => {
const response = await request(app)
.put(`/hosts/${createdHost.id}`)
.send(updatedHost);
expect(response.statusCode).toBe(200);
});
it('should list an updated host', async () => {
const response = await request(app).get('/hosts');
const hasValidHost = response.body.some(
(host) => host.address === updatedHost.address
);
expect(hasValidHost).toBeTruthy();
});
it('should not update a host without name or address', async () => {
const response = await request(app)
.put(`/hosts/${createdHost.id}`)
.send({
name: 'Cloudflare DNS',
});
expect(response.statusCode).toBe(400);
});
it('should not update a host with invalid id', async () => {
const response = await request(app).put(`/hosts/x`).send(updatedHost);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to update a host');
});
});
describe('DELETE /hosts/:hostId', () => {
it('should remove a host', async () => {
const response = await request(app).delete(`/hosts/${createdHost.id}`);
expect(response.statusCode).toBe(204);
});
it('should not delete a host with invalid id', async () => {
const response = await request(app).delete(`/hosts/x`);
expect(response.statusCode).toBe(400);
expect(response.body.message).toBe('Unable to delete a host');
});
});
});
});
.skip()
describe.skip()
it.skip()
describe.skip()
it.skip()
Cobertura de Testes
/codes/expressjs/monitor-app-prismajs-simple/back/package.json
{
"name": "invest-app",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"db:reset": "prisma migrate reset --force",
"test": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src",
"test:coverage": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src --coverage"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"jest": {
"collectCoverage": true,
"testTimeout": 20000,
"coverageReporters": [
"json",
"html"
]
},
"dependencies": {
"@prisma/client": "^5.10.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"prisma": "^5.10.2",
"sqlite-async": "^1.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4"
}
}
/codes/expressjs/monitor-app-prismajs-simple/back/package.json
{
"name": "invest-app",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"db:reset": "prisma migrate reset --force",
"test": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src",
"test:coverage": "npm run db:reset && node --experimental-vm-modules ./node_modules/.bin/jest src --coverage"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"jest": {
"collectCoverage": true,
"testTimeout": 20000,
"coverageReporters": [
"json",
"html"
]
},
"dependencies": {
"@prisma/client": "^5.10.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"morgan": "^1.10.0",
"prisma": "^5.10.2",
"sqlite-async": "^1.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^6.3.4"
}
}
$ npm run test:coverage
$ npm run test:coverage