local-image-server
open source: https://github.com/KeroVieux/local-image-server
local-image-server
- a simple image hosting service used nodejs
- running without mysql or mongodb, lowdb is required again (I'm a big fan of lodash)
- base64 or image from web URL is supported, besides the form submit
- resize the image to your expected and return base64
- all images stay in your disk
Getting started
-
install
yarn
-
start
yarn start
-
finally
two server have started, one is image server, the other one is data server.(default port is 9071 and 9072)
demo
deploy
$ mkdir uploads
$ pm2 start yarn --interpreter bash --name local-image-server -- start
what here provided
upload single image from form
- the name of file input must be 'image'
curl -X POST \
-H "Content-Type: image/png" \
--data-binary '@test.png' \
http://localhost:9071/upload-single
return
{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}
your div should be look like this
<form action="http://localhost:9071/upload-single" method="post" enctype="multipart/form-data">
<h2>single</h2>
<input type="file" name="image">
<input type="submit" value="submit">
</form>
upload multiple images from form
- the name of file input must be 'images'
curl -X POST \
-H "Content-Type: image/png" \
--data-binary '@test.png' \
http://localhost:9071/upload-multi
return
[{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}]
your div should be look like this
<form action="http://localhost:9071/upload-multi" method="post" enctype="multipart/form-data">
<h2>multi</h2>
<input type="file" name="images" multiple>
<input type="submit" value="submit">
</form>
base64 array
curl -X POST \
-H "Content-Type: application/json" \
-d '{"images": ["base64 str","base64 str"]}' \
http://localhost:9071/upload-base64
return
[{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}]
image url array
curl -X POST \
-H "Content-Type: application/json" \
-d '{"images": ["web url","web url"]}' \
http://localhost:9071/upload-url
return
[{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}]
get images objects
curl -X GET \
-H "nothing: {{nothing}}" \
http://localhost:9072/images?id=:id&id=:id
return
[{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}]
get thumbs
curl -X POST \
-H "Content-Type: application/json" \
-d '{"filter": "id=:id&id=:id"' \
http://localhost:9071/thumbs
return
[{"id":"yNJ7Qa0rH","fileName":"yNJ7Qa0rH.jpg","base64": "base64"}]
get image by id
curl -X GET \
-H "nothing: {{nothing}}" \
http://localhost:9072/images/:id
return
{"id":"yNJ7Qa0rH","fileName": "yNJ7Qa0rH.jpg"}
get base64
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:9072/image/:id?base64=true
return base64 string
get file
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:9072/image/:id
return file
get specific size base64
curl -X GET \
-H "Content-Type: application/json" \
http://localhost:9072/sharp/:id?w=100&h=100&format=png
return base64 string
why not chevereto
- the only api for upload used get method, so you cannot upload some image within large size
- cannot get image with the specific size and format
- bad pagination
todo
- search images in a disk and generate the specific info in the database
- build an app for users like chevereto, it should have albums /pagination / tags / full-text search /multiple users