Experiments Extension
A Rule Engine extension for A/B and multivariate testing.
Installation
The recommended way to install this plugin is using NPM. It pairs nicely with module bundlers such as Rollup, Webpack or Browserify and includes Typescript typings.
Run the following command to install the latest version:
npm install @croct/rule-engine-actions
Basic usage
import croct from '@croct/plug';
import '@croct/rule-engine';
import '@croct/rule-engine-actions';
croct.plug({
plugins: {
rules: {
actions: {
'say-hello': () => alert('Hello!'),
},
pages: {
'/home': [
{
rules: [
{
name: 'welcome-visitor',
properties: {
action: 'say-hello',
}
}
]
}
]
}
},
},
});
Contributing
Contributions to the package are always welcome!
- Report any bugs or issues on the issue tracker.
- For major changes, please open an issue first to discuss what you would like to change.
- Please make sure to update tests as appropriate.
Testing
Before running the test suites, the development dependencies must be installed:
npm install
Then, to run all tests:
npm run test
Run the following command to check the code against the style guide:
npm run lint
Building
Before building the project, the dependencies must be installed:
npm install
Then, to build the CommonJS module:
npm run build
Copyright Notice
This project is released under the MIT License.