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

apx-helper-crud

v0.2.6

Published

CRUD (Create Read Update Delete) helper for APX API server actions

Downloads

40

Readme

APX Helper CRUD

Kado

STOP AND READ THIS

APX or Apex is no longer maintained and is superseded by Kado.

A new package is available to handle all your JavaScript needs. See kado.org for details.

Summary

CRUD (Create Read Update Delete) helper for APX API server actions

Requires Mongoose Models and the mongoose-list and mongoose-merge plugin plugins.

Usage

Simply require the helper within your actions

$ npm install apx-helper-crud --save
var Crud = require('apx-helper-crud')
  , Model = require('./models/test').model

//will populate all the following crud functions
// * find
// * findOne
// * list (which required the model to use the mongoose-list plugin)
// * save
// * remove
module.exports = new Crud(Model,'test','Test Module')

Route Helper

Helper CRUD will also help populate route methods to cut down on repetition.

config.js

var crud = require('apx-helper-crud')

module.exports = {
  express: {
    routes: [
      {get: {path: '/myAction', file: 'actions/myAction.js', methods: crud.methods()}}
    ]
  }
}

You can also supply additional routes to the methods helper.

config.js

var crud = require('apx-helper-crud')

module.exports = {
  express: {
    routes: [
      {get: {path: '/myAction', file: 'actions/myAction.js', methods: crud.methods(['extraAction','extraAction2'])}}
    ]
  }
}

Alternatively a string may be passed that will be added as a single method. Also a function may be passed that returns either a string or an array of methods.

Constructor

The constructor only takes the following arguments.

  • Model -- The model to operate on
  • Name -- Name of the module
  • Description -- Description the module
var Crud = require('apx-helper-crud')
  , Model = require('./models/test').model
  , crud = new Crud(Model,'test','Test Module')

Methods

All of the Crud methods are APX actions so they accept request data directly and return APX responses.

Find

Find records by the criteria in the data object.

Takes a Mongoose query object as the only argument.

{name: 'test doc'}

Returns an object of results.

{results: [{name: 'test doc'}]}

Find One

Find a single record by the criteriea in the data object. Useful for finding items by ObjectID

Takes a mongoose query object as the only argument.

{name: 'test doc'}

Returns an object of results.

{result: {name: 'test doc'}}

List

Utilizes the mongoose-list plugin to iterate records in a collection.

Takes a mongoose-list arugment object.

{start: 0, limit: 10, find: 'foo', sort: 'bar'}

Returns a results object

{count: 10, results: [{name: 'test doc'}]}

Save

Save one or many documents.

IMPORTANT requires the mongoose-merge plugin to be loaded in the model.

Accepts a document or an array of documents.

[{name: 'test doc'}]

Returns a result object

{results: [{name: 'test doc'}]}

Remove

Remove one or many documents.

Accepts a query object or an array of query objects.

[{name: 'test doc'}]

Returns success or error only.

Roles

If apx-roles is loaded at initialization they will be implemented by the crud helper unless explicitly disabled.

The use of roles also requires apx-session to be loaded as it will look for apx.session.get('profile') to test against and will default to the profile guest.

Take a look at the following example

module.exports = new Crud(Model,'foo','my crud action')

This will expose the following roles.

  • foo.find
  • foo.save
  • foo.remove

find, findOne, and list are all considered part of the find permission.

To disable roles even with the module loaded, try the following

module.exports = new Crud(Model,'foo','my crud action',{useRoles: false})

Changelog

0.2.5

  • Updated to implement 'use strict'; in all files
  • Implemented apx-roles support to check permissions when available
  • Updated jshintrc to newest standards with other apx projects

0.2.4

  • Fixed small issue with save trying to read the property items in the request
  • Added testing against erroneous input for save, remove and findOne
  • Fixed issues with error handling on save, remove and findOne

0.2.3

  • Upgraded to apx 0.7.1 and apx-mongoose 0.5.1

0.2.2

  • Added methods helper to populate routes

0.2.1

  • Crud helper now fills name and description along with default run task
  • Updated usage statement

0.2.0

  • Completely re-imagined interface that can just extend methods of an action.
  • Simplified return formats to be more predictable
  • All methods are now APX actions

0.1.3

  • Better error handling on un-sanitized input

0.1.2

  • Fixed responses needing to be passed to doc.toJSON({virtuals: true})
  • Updated to apx 0.3.0

0.1.1

  • Added missing dependencies

0.1.0

  • Initial release