Skip to content

Instantly share code, notes, and snippets.

View coffeegoddd's full-sized avatar

Dustin Brown coffeegoddd

  • DoltHub
  • Los Angeles, CA
View GitHub Profile
@J6K
J6K / express.md
Last active March 20, 2019 19:16
express sample and quick examples and descriptions of body, params, and query

ExpressJS

All examples are using ReactJS as the frontend library and Axios as the request handler.

General

For now, think of servers as the middle man between the client and the database.

The only thing the client really needs is information from the database but it's not safe for clients to directly connect to databases and query information for themselves.