Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cesarvr/crud-nodejs
Angular 8 Frontend + NodeJS<Mongoose> + MongoDB Create Read Delete Update example.
https://github.com/cesarvr/crud-nodejs
Last synced: about 1 month ago
JSON representation
Angular 8 Frontend + NodeJS<Mongoose> + MongoDB Create Read Delete Update example.
- Host: GitHub
- URL: https://github.com/cesarvr/crud-nodejs
- Owner: cesarvr
- Created: 2020-03-27T10:38:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:51:31.000Z (almost 2 years ago)
- Last Synced: 2023-05-15T07:20:20.310Z (over 1 year ago)
- Language: JavaScript
- Size: 2.14 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD
Simple NodeJS CRUD (Create, Read, Update and Delete HTTP Verbs) using [Mongoose](https://www.npmjs.com/package/mongoose) and [Express.JS](https://expressjs.com/).
#### Quick Start
Create a ``NodeJS + MongoDB`` project on Openshift:
![](https://github.com/cesarvr/crud-nodejs/blob/master/docs/start.gif?raw=true)
> In this example I reduce the memory consumptions to ``80MB`` because it works well enough for development.
#### How Data Is Stored
For that we use [Mongoose](https://www.npmjs.com/package/mongoose) framework for more information look the [usage guide.](https://github.com/cesarvr/crud-nodejs/tree/master/model)
#### Delete
To remove this project:
```sh
oc delete --all -l app=
```In this case I just need to do:
```sh
oc delete all -l app=nodejs-mongo-persistent
```