bloggify-actions

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

Usage no npm install needed!

<script type="module">
  import bloggifyActions from 'https://cdn.skypack.dev/bloggify-actions';
</script>

README

bloggify-actions

Version Downloads

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

:cloud: Installation

# Using npm
npm install --save bloggify-actions

# Using yarn
yarn add bloggify-actions

:question: 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. :bug:

:memo: 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.

:yum: How to contribute

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

:dizzy: Where is this library used?

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

  • bloggify
  • bloggify-cli

:scroll: License

MIT © Bloggify