Skip to content

↕️ High-level module for building the actions functionality. Core module.

License

Notifications You must be signed in to change notification settings

Bloggify/bloggify-actions

Repository files navigation

bloggify-actions

Version Downloads

High-level module for building the actions functionality. Core module.

☁️ Installation

# Using npm
npm install --save bloggify-actions

# Using yarn
yarn add bloggify-actions

📝 Documentation

bloggifyActions()

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.

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💫 Where is this library used?

If you are using this library in one of your projects, add it in this list. ✨

  • bloggify
  • bloggify-cli

📜 License

MIT © Bloggify