High-level module for building the actions functionality. Core module.
# Using npm
npm install --save bloggify-actions
# Using yarn
yarn add bloggify-actions
High-level module for building the actions functionality. Core module.
The actions are located, by default, in the app/actions
directory:
// users.js
exports.list = ctx => Bloggify.services.users.getAll()
exports.update = ctx => Bloggify.services.users.update(ctx.data)
exports.insert = ctx => Bloggify.services.users.insert(ctx.data)
exports.remove = ctx => Bloggify.services.users.remove(ctx.data)
The actions' handlers should return promises.
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. 🐛
Have an idea? Found a bug? See how to contribute.
If you are using this library in one of your projects, add it in this list. ✨
bloggify
bloggify-cli