loading awesome stuff ...
CONNECT platform allows you to create server-less microservices intuitively and efficiently, without compromising the control you would get with traditional coding. Become faster, less error-prone and more focused.
please rotate your screen for watching the video.
please rotate your screen for watching the video.
please rotate your screen for watching the video.
Because of the non-linear flow of asynchronous code, it inevitably tangles upon itself when you represent it in a linear fashion, i.e. text-based representation:
However, you can easily untangle that flow by simply presenting it on a graph, which naturally results in a more intuitive and faster to work with form:
Our serverless platform allows you to focus on the logic of your micro-services while CONNECT platform takes care of the rest.
OR, use our docker image to deploy anywhere from your own servers to your laptop or use our boiler-plate project to create your own CONNECT-based projects. Want to attach CONNECT to an existing Node.js service? Simply use our NPM package!
Start Now//
// get the platform
//
const platform = require('connect-platform');
//
// add a node that outputs hellow to some dude
//
platform.node(
//
// so first the signature of the node.
//
{
path: '/my-package/hellow',
public: false,
inputs: ['dude'],
outputs: ['message'],
},
//
// then the functionality.
//
(inputs, output) => {
output('message', `hellow ${inputs.dude}!`);
}
);
Switch to coding in Javascript at any point you find synchronous coding more convenient, as CONNECT is based on Node.js.
Use any NPM package on your instances, or easily create your own CONNECT packages using our package boilerplate project on GitHub.
With this level of flexibility and technical freedom, you can practically build any logical microservice that you could build with Node.js in a fraction of the time. This is not just hyperbole: that is how we built the Platform as a Service (PaaS) for CONNECT utilizing CONNECT itself.
Utilize functionality of a CONNECT micro-service in another one just as you would call a function of another package. CONNECT makes inter-connecting your micro-services consistently effortless.
Inter-CONNECT is not limited to micro-services built with CONNECT. Any remote service complying with the INTERCONNECTIBILITY API spec can be easily integrated into CONNECT platform.
Join our Discord server, send us a message on Twitter, create issues on GitHub or simply drop us an email on info@connect-platform.com