An open API service indexing awesome lists of open source software.

https://github.com/rcos/rpi-validator

This repository contains string validation specific to RPI. Powered by Rensselaer Center for the Open Source.
https://github.com/rcos/rpi-validator

rin-validator rpi string validator validators

Last synced: 2 months ago
JSON representation

This repository contains string validation specific to RPI. Powered by Rensselaer Center for the Open Source.

Awesome Lists containing this project

README

          

# rpi-validator [![Build Status](https://travis-ci.org/rcos/rpi-validator.svg?branch=master)](https://travis-ci.org/rcos/rpi-validator) ![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg) ![npm](https://img.shields.io/npm/dt/rpi-validator.svg)

![rcos](art/rcos-logo-300.png)

This repository contains string validation specific to RPI. Powered by Rensselaer Center for the Open Source.

This package only validates strings. It does not validate inputs with `number` or other types.

### Install ###
- Npm: `npm install rpi-validator`
- Yarn: `yarn install rpi-validator`

View the project on NPM: https://www.npmjs.com/package/rpi-validator

### Example ###
```
let rpiValidator = require('rpi-validator');

rpiValidator.isRIN('shirley'); //false
rpiValidator.isRIN('667986864'); //true
```

### Available Validators ###
- isCRN()
- isISO()
- isRIN()
- isSubjectCode()
- isRPIEmail()

### Contributing ###

Anybody is welcome to contribute to this repository. It's what open source is all about. Make sure code is tested and that the existing tests pass. Please use issues to track bugs and/or changes.

This repository requires node to be installed in order for it to run. I think it requires version 8 or higher.

Run `yarn install` to install all dependencies before starting work.

Run the tests using `yarn test`.

### Past Contributors ###

Feel free to reach out with any questions about the repository. However, issues are the best way to get changes made.

- [Jake Billings](https://jakebillings.com)