MCPcopy Index your code
hub / github.com/dalenguyen/rest-api-node-typescript

github.com/dalenguyen/rest-api-node-typescript @v2.0.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.0.0 ↗ · + Follow
15 symbols 27 edges 5 files 0 documented · 0% updated 3y ago★ 469
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Building RESTful Web APIs with Node.js, Express, MongoDB and TypeScript

This is a simple API that saves contact information of people.

There are two versions of this project.

  • V1.0.0: you can run the server directly after cloning this version. It will create a simple RESTful API over HTTP.
  • V2.0.0: this is a more secure and control API project. You need to read the post on how to secure RESTful API application first. After that, you can run the project.

Requirements

NodeJS

Install global TypeScript and TypeScript Node

npm install -g typescript ts-node

Getting Started

You should install MongoDB on your local machine, or use other services such as mLab or Compose

After that, you will have to replace the mongoURL with your MongoDB address in lib/app.ts

Clone this repository

git clone git@github.com:dalenguyen/rest-api-node-typescript.git .

Then install the dependencies

npm install

Start the server

Run in development mode

npm run dev

Run in production mode

npm run prod

Testing over HTTP (tag v1.0.0)

The default URL is: http://localhost:3000

  • GET all contacts
Send GET request to http://localhost:3000/contact/

Testing over HTTPs (tag v2.0.0)

The default URL is: https://localhost:3000

The key and cert in the config folder is for testing purpose only. You should generate your own.

Reference from Lynda.com

Core symbols most depended-on inside this repo

config
called by 1
lib/app.ts
mongoSetup
called by 1
lib/app.ts
routes
called by 1
lib/routes/crmRoutes.ts
constructor
called by 0
lib/app.ts
addNewContact
called by 0
lib/controllers/crmController.ts
getContacts
called by 0
lib/controllers/crmController.ts
getContactWithID
called by 0
lib/controllers/crmController.ts
updateContact
called by 0
lib/controllers/crmController.ts

Shape

Method 9
Class 6

Languages

TypeScript100%

Modules by API surface

lib/controllers/crmController.ts7 symbols
lib/app.ts5 symbols
lib/routes/crmRoutes.ts3 symbols

Datastores touched

ContactCollection · 1 repos
(mongodb)Database · 1 repos
CRMdbDatabase · 1 repos

For agents

$ claude mcp add rest-api-node-typescript \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page