chupim-web
Version:
A Web Pipeline Framework to build APIs
37 lines (29 loc) • 878 B
Markdown
Chupim is a simple pipeline constructor that allows you to compose an API
from different resources and present them as if they were just one.
Go ahead and create something new using pipelines.
Try it yourself. Chupim is based on ExpressJS
```bash
mkdir my-pipeline
cd my-pipeline
npm init
npm install -s chupim-web
```
Create a new `index.js` file like this
```javascript
// index.js
const chupim = require('chupim-web');
chupim.start();
```
```bash
export CHUPIM_EXAMPLES=1
node index.js
```
[](http://localhost:3000)
[](https://baliberdin.github.io/chupim-web/)