1.1.3 • Published 7 years ago

angular-validated-resource v1.1.3

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

Angular Validated Resource

JSON Schema validation for angular resource.

build status npm version MIT license we're hiring

Usage

npm install angular-validated-resource

Designed to be an (almost) drop-in replacement for angular resource. When you configure the resource actions, additionally pass a schema to queryParamsSchema, requestBodySchema, or responseBodySchema to automatically validate on every request.

angular.module 'Product', [
  require 'angular-validated-resource'
]

.factory 'Product', ngInject (validatedResource) ->
  validatedResource 'http://api.test.com/products/:_id', {_id: '@_id'},
    query:
      method: 'GET'
      isArray: true
      queryParamsSchema: require './product_schemas/query/query_params.json'
      requestBodySchema: require './product_schemas/query/request_body.json'
      responseBodySchema: require './product_schemas/query/response_body.json'
    move:
      method: 'POST'
      url: 'http://api.test.com/products/:_id/move'
      queryParamsSchema: require './product_schemas/move/query_params.json'
      requestBodySchema: require './product_schemas/move/request_body.json'
      responseBodySchema: require './product_schemas/move/response_body.json'

If window.env is 'test', validation will not allow unknown fields. Otherwise, validation will allow unknown fields.

Although not required, we strongly recommended that you validate all parts of the request (queryParams, requestBody, and responseBody) for every action, even if the validation is just checking for an empty object. This way, you will catch any unexpected data that you pass through.

Contributing

Please follow our Code of Conduct when contributing to this project.

$ git clone https://github.com/goodeggs/angular-validated-resource && cd angular-validated-resource
$ npm install
$ npm test

Module scaffold generated by generator-goodeggs-npm.

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

8 years ago

1.1.0

9 years ago

1.0.8

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago