0.1.0 • Published 4 years ago

crud-fs v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Build Status Coverage Status

Version License Code style

Motivation

crud-fs is a simple static fs backed HTTP CRUD server. (you PUT, DELETE, GET files from the local fs). This is a lightweight read-write alternative to express.static.

Available API

Create or Update a file

echo "foo" | curl -X PUT -T - http://localhost:8090/bar

Read a file

curl -X GET http://localhost:8090/bar

Delete a file

curl -X DELETE http://localhost:8090/bar

Not in API, maybe todo

  • Move things
  • List directories
  • Rename things

Credits