Product Launch
anonymous
3 points
2 comments
Posted3 months agoActive3 months ago
Show HN: Self-hosted API for CRUD-ing JSON data
timokats.xyzAPIself-hostingJSON data storage
Discussion (2 comments)
Showing 2 comments
Nice. So sending {"username": "tom"} to /api/test/users will create > test.json with {"users": {"username": "tom"}} ?
3 months ago
Yes! And you can use "append" mode for use cases like these also. Then the value will be added as a list object. So:
{users: [{"username": "tom"}, {"username": "tim"}]}