Storage component for LoopBack.
Go to file
Miguel González Aravena 9fba79d154 Fix eslint errors 2018-01-08 09:07:30 -03:00
.github Add stalebot configuration 2018-01-06 22:46:26 -03:00
intl Update translated strings Q3 2017 2018-01-06 22:43:04 -03:00
lib Fix eslint errors 2018-01-08 09:07:30 -03:00
test Fix eslint errors 2018-01-08 09:07:30 -03:00
.eslintignore Fix eslint 2018-01-06 22:28:42 -03:00
.eslintrc Fix linting errors 2016-10-19 11:36:39 -04:00
.gitignore Add translated files 2016-09-22 15:10:38 -04:00
.travis.yml add .travis.yml 2018-01-06 22:43:04 -03:00
CHANGES.md 3.3.1 2018-01-06 22:47:23 -03:00
CODEOWNERS Add CODEOWNER file 2018-01-06 22:43:04 -03:00
CONTRIBUTING.md Update URLs in CONTRIBUTING.md () 2016-07-13 17:54:14 -07:00
LICENSE.md chore: update license 2018-01-06 22:47:23 -03:00
README.md Update README.md 2018-01-06 22:47:23 -03:00
docs.json Update docs.json 2014-04-10 11:40:26 -07:00
index.js Fix linting errors 2016-10-19 11:36:39 -04:00
package.json 3.3.1 2018-01-06 22:47:23 -03:00

README.md

LoopBack Storage Component

NOTE: The loopback-component-storage module supersedes loopback-storage-service. Please update your package.json accordingly.

LoopBack storage component provides Node.js and REST APIs to manage binary file contents using pluggable storage providers, such as local file systems, Amazon S3, or Rackspace cloud files. It uses pkgcloud to support cloud-based storage services including:

  • Amazon
  • Azure
  • Google Cloud
  • Openstack
  • Rackspace

Please see the Storage Service Documentaion.

For more details on the architecture of the module, please see the introduction section of the blog post.

Use

Now you can use Container's name with slash! If you want to create a directory, like this/isMy/newContainer, you have to use the char %2F instead of /, so your Container's name going to be this%2FisMy%2FnewContainer.

URL Example

Syntax

[POST] <<YOUR_URL>>:<<YOUR_PORT>>/api/Containers/<<CONTAINER_NAME>>/
[POST] <<YOUR_URL>>:<<YOUR_PORT>>/api/Containers/<<CONTAINER_NAME>>/upload (For upload file)

Example

[POST] http://example.com:3000/api/Containers/images%2Fprofile%2Fpersonal/
[POST] http://example.com:3000/api/Containers/images%2Fprofile%2Fpersonal/upload (For upload file)

Add option to your dataSources.json

If you want a default name only for the upload images (not files), you have to add defaultImageName to your Container options. datasources.json

[...]
  "container": {
    "name": "container",
    "connector": "loopback-component-storage",
    "provider": "filesystem",
    "maxFileSize": "10485760",
    "root": "./storage",
    "defaultImageName": "photo"
  }
[...]

Examples

See https://github.com/strongloop/loopback-example-storage.