Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/falconandrea/simple-nodejs-tests

Some simple exercises for test knowledges learned during the NodeJs courses that I'm following.
https://github.com/falconandrea/simple-nodejs-tests

ejs-templates eslint express fastify javascript jest jest-tests mongodb mongoose node nodejs prettier tap

Last synced: about 1 month ago
JSON representation

Some simple exercises for test knowledges learned during the NodeJs courses that I'm following.

Awesome Lists containing this project

README

        

# NodeJs Tests

Some simple exercises for test knowledges learned during the NodeJs courses that I'm following.

## [List Films](https://github.com/falconandrea/simple-nodejs-tests/tree/main/list-films)

Simple form for add a new film (title and year), and a list for show all films.

Using:

- Mongoose/MongoDB
- Express
- EJS templating and TailwindCSS
- Prettier and Eslint
- Jest for testing.

## [URL Shortener](https://github.com/falconandrea/simple-nodejs-tests/tree/main/url-shortener)

Simple URL Shortener for shorten an url.

Using:

- Mongoose/MongoDB
- Express
- EJS templating and TailwindCSS
- Prettier and Eslint
- Jest for testing.

## [CRUD Fastify](https://github.com/falconandrea/simple-nodejs-tests/tree/main/crud-with-fastify)

Simple CRUD for manage Authors and Books with Fastify.

Using:

- Mongoose/MongoDB
- Fastify
- Prettier and Eslint
- Swagger documentation with Fastify plugin
- Tap for testing.

## [Boilerplate CRUD with Express and Mongoose](https://github.com/falconandrea/simple-nodejs-tests/tree/main/boilerplate-crud-express-mongoose)

Simple Boilerplate CRUD with Express and Mongoose.

Using:

- Mongoose/MongoDB
- Express
- Nodemon
- Prettier and Eslint
- Jest for testing.