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

em2

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

em2

es6 easy model manage

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
7
75%
Maintainers
1
Weekly downloads
 
Created
Source

em2

this is a front end easy model manager

Usage

create model

import em2 from 'em2';

const User = new em2({
    url: [api],
    fields: [model fields, for cleaning params under POST, PUT, OPTIONS... methods]
}, {
    pkey: [id => primary key, default is '_id'],
    parseData: [function => global parseData handler, when data fetched, just after data to json object],
    exception: [function => global error handler],
})

fields can used three way:

fields: {
    name: {
        type: String,
        default: '',
    },
    age: {
        type: Number,
        default: 0,
    }
    ...
}
fields: [
    {
        name,
        type: String,
        default: '',
    },
    {
        name: 'age',
        type: Number,
        default: 0
    }
    ...
]

or simple way:

fields: ['name', 'age', ...]

then use it:

model methods

//GET api?name=a&sex=b
User.find({name: 'a', sex: 'b'}).then(data => {
    // after parseData if have parseData
}).catch(error => {
    // after exception if have
})
//GET api/:_id?name=a&sex=b
User.findOne(_id, params).then(succFunc).catch(errFunc)
//POST api body: params
User.create(params)...
//PUT api/:_id body:params
User.update({_id, name: 's', ...})
//POST or PUT, whether params has model's pkey
User.save(params)
//DELETE api?name=a&sex=b
User.destroy({_id, name: 'a',...})

nested model

const Comment = new em2({
    url: '/post/:post_id/comment'
})

// GET /post/[post_id]/comment
Comment.find({post_id, ...})

// GET /post/[post_id]/comment/[_id]
Comment.findOne({post_id, _id})

also has default request

// request
User.request(['get', 'post', ...], api, params).then(data => {
    // after parseData
}).catch(error => {
    // after exception
})

warning: if you need model's this(like this.pkey, or this.fields), function parseData should not be write in arrow function. neither do function exception

Keywords

easy model manage

FAQs

Package last updated on 11 May 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