1.1.6 • Published 5 years ago

fish-type-js v1.1.6

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Fish type JS

Data type validation in function calls on Runtime to be used in javascript projects.

dependencies Status license version build

We have the new version 1.1.0 ready!

In this version:

  • Improve input function type semantic.
  • Add typedef validation module.

Objective:

Every JS programmer knows how annoying it is to work with static validators of data types. That's why I created this library, to help us and make sure that our function is always executed only with the types of data that we define for it.

Type data validation:

This library uses joi https://github.com/hapijs/joi to handle the type validations, you can use custom primitives data as "string", "bool", "number" or more complex structure to validate if the parameters used to call a function match with the paramters that we define to allow it.

Usage:

Install:

Run this command to install the library from npm.

npm install fish-type-js

Library:

The library export two things, a decorate function that have to be use for decorate a single function and add a automatic call parameters validation, and a list of primitive data types.

Decorate function - format

const {decorate} = require('fish-type-js');

//I will get the function output.
const sumT = decorate({input},output)(sum);

Define input and output:

You can specify the types of the parameters that the function receive and the return data of the function.

const newFunction = decorate({input},output)(Function);

IN: paramters structure / OUT: type function return

Type parameters: You can use this type parameters in each parameter key.

  • undefined
  • string
  • null
  • boolean
  • number
  • object
  • promise

Or create more complex object schema and mix the function call with a joi schema validation, is important to remember include JOI module to use his data types schema.

const Joi = require('joi');

//Include primitives types.
const pointType =  Joi.object().keys({
  lat: Joi.number(),
  lng: Joi.number()
});

const findGeoT  = decorate({point:pointType})(findGeo);

findGeoT({lat:1.111,lng:3.01});

Examples:

Try this basic example of how to use the library.

//Include lib and types.
const {decorate} = require('fish-type-js');

//Basic function.
const sum = (a,b)=>{
  return a+b;
}

//Decorate the function.
const sumT  = decorate({a:'number',b:'number'},'number')(sum);

sumT(10,10);

If you want more examples, go and download the project and go to /samples folder and chek the examples.

Note:

This library is a work in progress project, I'm sure that will be very usefull for any JS developer, but take care that could be changes in the next versions. *We are working in create our custom structure validation engine to avoid use JOI.

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago