1.0.5 • Published 8 years ago

crud-rest v1.0.5

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

HTTP verbs mapped to CRUD

rest-crud logo


REST rappresent resources/entities such as URLs on which operate CRUD operations on them.

The scope of this module is to gived the name of a Resource/Entity, to create a JSON structure that help the definition of the REST call paths.


WARINIG

Please check again this project later. I am still writing/finishing this module.


Documentation

http://internet3.github????? TODO

Usage example

#> cat test.js

var petCRUD = new crud('pet',
  {

   create:   { collection: { post: 'many', casesense: false } },
   retrieve: { collection: { post: 'findByStatus', casesense: false } },
   update:   [
              { collection: { post: 'updateByIds', casesense: false } },
              { item: { post: 'uploadImage', casesense: false } }
             ],
   delete:   { collection: { post: 'deleteByTag', casesense: false } }
  }
);

console.log(JSON.stringify(petCRUD, null, 2));

Test

#> node test.js

node test.js

{
  "name": "pet",
  "crud": {
    "Create": {
      "item": {
        "post": "/pet/{petId}"
      },
      "collection": {
        "post": "/pet/many",
        "casesense": false
      }
    },
    "Retrieve": {
      "item": {
        "get": "/pet/{petId}"
      },
      "collection": {
        "post": "/pet/findByStatus",
        "casesense": false
      }
    },
    "Update": {
      "item": {
        "post": "/pet/{petId}/uploadImage",
        "casesense": false
      },
      "collection": {
        "post": "/pet/updateByIds",
        "casesense": false
      }
    },
    "Delete": {
      "item": {
        "delete": "/pet/{petId}"
      },
      "collection": {
        "post": "/pet/deleteByTag",
        "casesense": false
      }
    }
  },
  "url": {
    "Create": [
      "/pet/{petId}",
      "/pet/many"
    ],
    "Retrieve": [
      "/pet/{petId}",
      "/pet/findByStatus"
    ],
    "Update": [
      "/pet/{petId}",
      "/pet/updateByIds",
      "/pet/{petId}/uploadImage"
    ],
    "Delete": [
      "/pet/{petId}",
      "/pet/deleteByTag"
    ]
  }
}
1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago