Skip to content

VacationDB/navigation

 
 

Repository files navigation

CRUD

To get Listings, send a get request to /api/searchListings/

To get search Records, send a get request to /api/searchRecords

To post a new search record, send a post request to /api/searchRecords with the data you want in the request body in this shape: { text: your text }

To update listing, send a put request to /api/searchListings/:listingId with the id you want to be deleted in place of :listingId and in the request body put the new data you want in the format of the following: { listingId: { type: Number, unique: true }, title: String, host: String, city: String, photo: String, };

To delete a listing, send a delete request to /api/searchListings/:listingId with the id you want to be deleted in place of :listingId

Project Name

Project description

Related Projects

Table of Contents

  1. Usage
  2. Requirements
  3. Development

Usage

Some usage instructions

Requirements

An nvmrc file is included if using nvm.

  • Node 6.13.0
  • etc

Development

Installing Dependencies

From within the root directory:

npm install -g webpack
npm install

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 76.1%
  • CSS 20.4%
  • HTML 3.0%
  • Dockerfile 0.5%