npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@revmob/raml-validator

v0.2.1

Published

Project used for documenting and validating APIs

Downloads

9

Readme

RAML Validator

Welcome to a new era. An era where we, revmobers, will document every API! 😎

Why

Because loggin the input payload and response json to understand what's going on sucks 😭

To help us, we will use RAML (RESTful API Modeling Language) to document our code, and complementary libs (osprey) to validate requests against our doc.

What is does

Before your request reaches your controllers, raml express middleware will:

  • intercept the request;
  • check where it was going to;
  • validate them against a raml file;
  • return an error if the request payload doesn't meet the criteria

Default Error Handler

The default error handler will return array of error:

400:
  body:
    type: object
    properties:
      errors: error[]
    examples:
      invalidResponse:
        errors: [{
            message: 'Validation Error!',
            details: {
                age: 'Missing required property: age',
                name: 'Invalid type, expected string'
            }
        }]

The response:

{
    "errors": [{
        "message": "Validation Error!",
        "details": {
            "age": "Missing required property: age",
            "name": "Invalid type, expected string"
        }
    }]
}

Installation

Just do a:

npm install --save @revmob/raml-validator

How to use

To see an example, just access examples/express.js. The default middleware is created Asyncronously, using promise. That being said, just pass your Express instance to raml-validator like this: ALWAYS define raml-validator middleware BEFORE your routes, otherwise it won't validate your request before your controller processing it


import ramlValidator from 'raml-validator'

const config = {
  path: 'path/to/api.raml'
}

const app = express()

ramlValidator(config)
  .then(({ validator, errorHandler, finalErrorHandler }) =>
    app.use(validator) // MUST come before your routes
     .use(errorHandler) // MUST come before your routes
     .use(myRoutes)
     .use(finalErrorHandler) // SHOULD be the last
   )
  .then(app => app.listen(8080))

Configuration

Osprey

The config object accepts the following:

const config = {
  path: 'path/to/api.raml', //ABSOLUTE path to raml file
  customErrorHandler: function (req, res, errors, stack) {
    // A custom Error Handler, where you can process invalid requests your way.
  },
  server: {
    cors: true
  },
  security: {
    basicAuth: {
      validateUser: (user, password, done) => {
        if (user === MY_USER && password === MY_PASSWORD) {
          return done(null, true)
        }

        return done(null, false)
      }
    }
  }
}

For more details, please refer to osprey documentation for server and security.

Additional configuration

As of 0.2.0, this package expose the hooks configuration.

This allows you to intercept RAML errors. It's specially useful for logging:

There are 2 different hooks:

  • onValidationError :: (errors: Error[], req: HttpRequest, res: HttpResponse) -> void: will be called if RAML validation fails.
  • onUnknownError :: (error: Error, req: HttpRequest, res: HttpResponse) -> void: will be called if something goes wrong with the validation setup.
const config = {
  path: 'path/to/api.raml',
  server: {
    cors: true
  },
  security: {
    basicAuth: {
      validateUser: (user, password, done) => {
        if (user === MY_USER && password === MY_PASSWORD) {
          return done(null, true)
        }

        return done(null, false)
      }
    }
  },
  hooks: {
    onValidationError: (errors, req, res) => {
      errors.map(error => console.log(error))
    },
    onUnknownError: (error, req, res) => {
      console.log(error)
    }
  }
}

I am a hipster and don't use Express.js

If you're not using express.js server, feel free to contribute by PRing a new raml middleware! :)