https://github.com/cnocon/q-and-api
  
  
    The Node + Express RESTful API for a code-oriented flash cards database. 
    https://github.com/cnocon/q-and-api
  
css html javascript
        Last synced: 8 months ago 
        JSON representation
    
The Node + Express RESTful API for a code-oriented flash cards database.
- Host: GitHub
- URL: https://github.com/cnocon/q-and-api
- Owner: cnocon
- License: mit
- Created: 2020-08-08T05:05:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T13:27:42.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T15:25:43.965Z (10 months ago)
- Topics: css, html, javascript
- Language: JavaScript
- Homepage: https://arcane-stream-45843.herokuapp.com/questions
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- License: LICENSE
 
Awesome Lists containing this project
README
          # q-and-api
The Node + Express RESTful API for a code-oriented flash cards database.
base url: `https://arcane-stream-45843.herokuapp.com/`
## GET `/questions`
*SAMPLE RESPONSE*
```json
[
  {
    "categories": [
      "CSS"
    ],
    "_id": "-o9MW52GG",
    "prompt": "What CSS display value will cause the element to fill the space of its container?",
    "difficulty": 2,
    "answer": "display: block",
    "createdAt": "2020-08-08T05:22:49.112Z",
    "gist": "https://gist.github.com/cnocon/25c10c5a228ef004de9ca54fe64f7411.js",
    "__v": 0
  },
  {
    "categories": [
      "JavaScript",
      "Node"
    ],
    "_id": "OW1YItFAf",
    "prompt": "What language is the V8 engine behind Node JS written in?",
    "difficulty": 6,
    "answer": "C++",
    "createdAt": "2020-08-08T04:42:49.066Z",
    "__v": 0
  },
]
```