Browse by type
A progressive Node.js framework for building efficient and scalable server-side applications.
This is a straightforward implementation of a CRUD API designed for managing Pokemon-related data operations. Nest framework TypeScript starter repository.
CREATE TABLE `pokemon` (
`hp` int NOT NULL,
`attack` int NOT NULL,
`defense` int NOT NULL,
`sp_attack` int NOT NULL,
`sp_defense` int NOT NULL,
`speed` int NOT NULL,
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL,
`image_url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=810 DEFAULT CHARSET=utf8mb3;
src folder.config.ts file.export const HOST = 'your-mysql-hostname'; // e.g., 'localhost'
export const PORT = 3306; // MySQL default port
export const USERNAME = 'your-mysql-username';
export const PASSWORD = 'your-mysql-password';
export const DATABASE = 'pokemon';
Replace 'your-mysql-hostname', 'your-mysql-username', and 'your-mysql-password' with your MySQL server's hostname, username, and password.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.
Nest is MIT licensed.
$ claude mcp add nestjs-pokedex-api \
-- python -m otcore.mcp_server <graph>