Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/falconandrea/simple-nodejs-tests
- Owner: falconandrea
- License: mit
- Created: 2022-06-24T16:48:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-05T16:57:05.000Z (over 2 years ago)
- Last Synced: 2023-03-23T22:27:09.926Z (almost 2 years ago)
- Topics: ejs-templates, eslint, express, fastify, javascript, jest, jest-tests, mongodb, mongoose, node, nodejs, prettier, tap
- Language: JavaScript
- Homepage:
- Size: 1.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.