chupim-web

A Web Pipeline Framework to build APIs


Keywords
Pipeline, BFF, API, microservices
License
Apache-2.0
Install
npm install chupim-web@0.1.3

Documentation

Chupim Web

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.

Start a New Project with Chupim Web

Try it yourself. Chupim is based on ExpressJS

mkdir my-pipeline
cd my-pipeline

# Here you will need to answer some questions about your new project
# If you are new on nodejs just press enter key for each questions
npm init
npm install -s chupim-web

Create a new index.js file like this

// index.js
const chupim = require('chupim-web');
chupim.start();
# Enable examples (stages and pipeline)
export CHUPIM_EXAMPLES=1
# Start chupim
node index.js

Access to Server

http://localhost:3000

Complete Documentation