strapi-codelite
v0.0.4-beta
Published
Low code tool for generating rest end points
Downloads
5
Readme
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
- Custom url rest endpoints
- Url support for both arguments and params
- Authenticated / Anonymous rest endpoint access
- Token based authentication system
- Customise server response
- Create filters and views based on content types and its fields mapping
- Combine multiple fields response to groups
- Can read request headers and map as field values.
- 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