Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Latest commit

 

History

History
34 lines (23 loc) · 460 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 460 Bytes

component-fbp

Component plugin for requiring FBP files

Usage

var fbp = require("component-fbp");

builder.use(fbp());
// my-app.js

var graph = require("./mygraph.fbp");

console.log(graph.nodes);
# mygraph.fbp
'Hello World' -> IN Show(core/Output)

Or use directly with component-build

$ npm install component-fbp
$ component build --use component-fbp