Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T13:27:42.000Z (about 4 years ago)
- Last Synced: 2024-11-14T01:14:52.590Z (2 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
},
]
```