0.0.4-beta • Published 2 years ago

strapi-codelite v0.0.4-beta

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Strapi Codelite

Low code tool for generating rest end points in strapi version 3

This plugin allows you to generate rest endpoints that support all CRUD (create/Read/Update/Delete) oprations without restarting strapi server.

Features

  1. Custom url rest endpoints
  2. Url support for both arguments and params
  3. Authenticated / Anonymous rest endpoint access
  4. Token based authentication system
  5. Customise server response
  6. Create filters and views based on content types and its fields mapping
  7. Combine multiple fields response to groups
  8. Can read request headers and map as field values.
  9. Shortcodes that support for global variables or request headers as adding @key format

Installation

use npm

npm install strapi-codelite

use yarn

yarn add strapi-codelite

Add the following attribute in the config/plugins.js module.exports section:

'views': {
    enabled: true,
    resolve: './src/plugins/views'
}

Or if you do not have the plugins.js file yet,create a config/plugin.js file and the following contents:

module.exports = {
    // ...
    'views': {
      enabled: true,
      resolve: './src/plugins/views'
  },

And finally, run the build command:

npm run build

Or if you are using yarn:

yarn build