0.1.24 • Published 5 years ago
codoozer-flow v0.1.24
Codoozer Flow
Getting started
- Go to codoozer.com and create a flow project.
- Create all your flows and the steps of each flow.
- Publish your flow project to get the url you need to init your codoozer-flow lib.
- Import
codoozer-flowin your code with npm or cdn. - Start a flow whenever you want with the id of the flow project.
Install
npm
import CodoozerFlow from 'codoozer-flow';
import 'codoozer-flow/build/index.css' // If you import a css file in your library
...cdn
<link href="https://unpkg.com/codoozer-flow/build/index.css" rel="stylesheet">
<script src="https://unpkg.com/codoozer-flow/build/index.js"></script>
...Usage
npm
let flow = new CodoozerFlow({ hash: 'HASH' });
...cdn
let CodoozerFlow = window.CodoozerFlow.default;
let flow = new CodoozerFlow({ hash: 'HASH' });
...API
start(flowId, { newLayer })
flowId: must be aStringthat represents the id of the flow you want to start.newLayer: must be aBoolean. Default:true.
goTo(stepId, { newLayer })
stepId: must be aStringthat represents the id of the step you want to go.newLayer: must be aBoolean. Default:false.
0.1.24
5 years ago
0.1.10
5 years ago
0.1.11
5 years ago
0.1.12
5 years ago
0.1.13
5 years ago
0.1.14
5 years ago
0.1.15
5 years ago
0.1.20
5 years ago
0.1.21
5 years ago
0.1.22
5 years ago
0.1.23
5 years ago
0.1.16
5 years ago
0.1.8
5 years ago
0.1.17
5 years ago
0.1.7
5 years ago
0.1.18
5 years ago
0.1.19
5 years ago
0.1.9
5 years ago
0.1.6
5 years ago
0.1.5
5 years ago
0.1.4
5 years ago
0.1.2
5 years ago
0.1.3
5 years ago
0.1.1
5 years ago
0.1.0
5 years ago