Skip to content

calebmadrigal/expressjs-messageboard

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

expressjs-messageboard

Live Demo

http://expressjs-messageboard.herokuapp.com/

Description

Creates a simple message board API using ExpressJS.

How to run locally

npm install
node .

Example usage of API

Get all messages:

curl -X GET http://expressjs-messageboard.herokuapp.com/messages

Get a single message:

curl -X GET http://expressjs-messageboard.herokuapp.com/messages/0

Add message:

curl -X POST -H 'Content-Type: application/json' -d '{ "text": "Test 1" }' http://expressjs-messageboard.herokuapp.com/messages

Modify a message:

curl -X PUT -H 'Content-Type: application/json' -d '{ "text": "Updated message" }' http://expressjs-messageboard.herokuapp.com/messages/3

About

A simple RESTful API with ExpressJS on NodeJS to provide a very simple message board functionality.

Resources

License

Stars

Watchers

Forks

Packages

No packages published