New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

vapi

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vapi

A javascript library that helps you create models in your applications.

Source
npmnpm
Version
0.1.0-beta.2
Version published
Weekly downloads
349
14.43%
Maintainers
1
Weekly downloads
 
Created
Source

vapi

Package Quality npm

A javascript library that helps you create models in your applications.

Quick Start

Using npm:

$ npm install --save vapi

In Node.js:

// /app/models/MyModel.js
const {Model} = require('vapi')

Documentation

  • Models
  • API

Quick Examples

class Person extends Model {}
// Define properties to Person model.
Person.defineProperty('first', { alias: 'name' })
Person.defineProperty('name', {
    transform: require('lodash/toLower')
})

class User extends Model {}
// Define properties to User model.
User.defineProperties({
    'username': {
        transform: require('lodash/toLower')
    },
    'password': {
        validation: (v) => /^[a-z|0-9]{9,15}$/.test(v)
    },
    'person': {}
})

// Create an instance of the User model.
const cat = new User({
    username: 'UserA',
    password: '1234', // Bad Password
    person: new Person({
        name: 'Julio'
    })
})

// Validation
if (cat.isValid()) {
    // you code if is valid.
} else {
    // you code of is not valid.
}

// End Cat state
// cat => 
// {
//   "username": "usera",
//   "password": "1234",
//   "person": {
//     "first": "julio",
//     "name": "julio"
//   }
// }

Brand Vapi

Vapi (Virtual API) is an open brand whereby this not have a restriction in you use. However it is suggested to use this with the following specifications.

  • Use the name Vapi:
    • Vapi: The first letter uppercase.
    • vapi: all letters on lowercase.
    • vapi.js: Specific the javascript extension.

License

This project is under a MIT License.

Keywords

models

FAQs

Package last updated on 23 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts