New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

joinednode

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

joinednode

Call your JoinedNode.com recipes from the browser

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

joinednode-js

Use joinednode-js to call your JoinedNode.com recipes from the browser using a require-like pattern. Run node.js code without a backend.

var joinednode = require('joinednode')('<your-joinednode-container>');
joinednode('<your-joinednode-app>').then(function(result) {
	console.log(result);
});

Install

From npm:

npm install joinednode

Or our CDN:

<script src="https://cdn.joinednode.com/joinednode.min.js"></script>

Usage

If you haven't created a joinednode.com account yet, you can create one at https://joinednode.com

Once created, this is how you call it:

var joinednode = require('joinednode')('<your-joinednode-container>');
joinednode('<your-joinednode-app>').then(function(result) {
  console.log(result);
});

Or from the browser:

<script>
	var joinednode = new joinednode('<your-joinednode-container>');
	joinednode('<your-joinednode-app>').then(function(result) {
	  console.log(result);
	});
</script>

Sending parameters to the joinednode

var joinednode = require('joinednode-require')('<your-joinednode-container>');
joinednode('<your-joinednode-app>', {foo: 'bar'}).then(function(result) {
  console.log(result);
});

Specifying an HTTP method

joinednode.get('<your-joinednode-app>');
joinednode.post('<your-joinednode-app>', { foo: 'bar' });

Calling private recipes

Save your recipe as Private via the Joined Node Dashboard.

Then create a token via our API:

$ curl -X POST https://api.joinednode.com/create-token/<your-joinednode-container>

Call it using a token obtained from Joined Node:

var joinednode = require('joinednode')('<your-joinednode-container>');
joinednode.withAuth(token)('<your-joinednode-app>').then(function(result) {
	console.log(result);
});

Keywords

joinednode

FAQs

Package last updated on 24 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts