Make REST api to partial response, just like GraphQL
30 Oct, 2018
The story begins in one day, I want to make NodeJS API endpoints like
GET /api/blogposts?fields=author{name,avatar},title,detail
and it should return me
[{
"author": {
"name": "Liam Ng",
"avatar": "https://someurl",
},
"title": "blogpost title",
"detail": "blogpost detail"
}]
Make REST api to partial response, just like GraphQL
30 Oct, 2018
The story begins in one day, I want to make NodeJS API endpoints like
GET /api/blogposts?fields=author{name,avatar},title,detail
and it should return me
[{
"author": {
"name": "Liam Ng",
"avatar": "https://someurl",
},
"title": "blogpost title",
"detail": "blogpost detail"
}]
Rust For Web Development Part 1
01 Feb, 2018
With the asynchronous I/O libraries of Rust is mostly ready, Rust can serve web traffic without being I/O bound. However, the only downside is that framework is not mature yet.
Edit on year Jun 19, 2018
Project has been discontinued due to Rust still does not support Async/Await which i think is crucial for web development
Rust For Web Development Part 1
01 Feb, 2018
With the asynchronous I/O libraries of Rust is mostly ready, Rust can serve web traffic without being I/O bound. However, the only downside is that framework is not mature yet.
Edit on year Jun 19, 2018
Project has been discontinued due to Rust still does not support Async/Await which i think is crucial for web development
05 Feb, 2017
It has been awhile since I have been inactive in open-source world. Although nowadays trend is in VR, AI and iOT, API development is still needed.
Edit on year Jun 19, 2018
Project has been discontinued due to Koa2 + Graphql basically can do what I plan to do
05 Feb, 2017
It has been awhile since I have been inactive in open-source world. Although nowadays trend is in VR, AI and iOT, API development is still needed.
Edit on year Jun 19, 2018
Project has been discontinued due to Koa2 + Graphql basically can do what I plan to do