Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabogit/expressjs-mongoose
https://github.com/fabogit/expressjs-mongoose
express mongoose typescript
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fabogit/expressjs-mongoose
- Owner: fabogit
- Created: 2022-10-13T13:20:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-13T13:20:54.000Z (about 2 years ago)
- Last Synced: 2024-11-06T20:38:06.374Z (about 2 months ago)
- Topics: express, mongoose, typescript
- Language: TypeScript
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
---
title: ExpressJS Mongoose
description: An ExpressJS server that connects to a MongoDB database
tags:
- express
- mongodb
- mongoose
- typescript
---# ExpressJS Mongoose Example
This example starts an [ExpressJS](https://expressjs.com/) server that connects to a Railway MongoDB database using [MongooseJS](https://mongoosejs.com/)
[![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/new/template/RM1WxR)
## ✨ Features
- Express
- TypeScript
- MongoDB with Mongoose## 💁♀️ How to use
- Install dependencies `yarn`
- Connect to your Railway project `railway link`
- Start the development server `railway run yarn dev`## 📝 Notes
The starter contains a single `Country` model that you can read from and write to.
There are two main routes on the server:
- A `GET` route - `/countries` which returns all the countries
- A `POST` route - `/countries` which can be used to add a new countryExample post request to add a new country:
```
curl -H "Content-Type: application/json" \
--request POST \
-d '{"name":"India","iso2code":"IN"}' \
http://localhost:3333/countries
```