Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ertrzyiks/await-test
https://github.com/ertrzyiks/await-test
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ertrzyiks/await-test
- Owner: ertrzyiks
- Created: 2016-01-25T08:53:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-17T13:01:43.000Z (almost 9 years ago)
- Last Synced: 2024-12-07T19:35:52.672Z (about 1 month ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# await-test
Simple playground for ES7 await syntax
```
app.get('/', async function (req, res) {
var result = await get();res.send(result);
});
```