Package Exports
- vow-node
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vow-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Vow-node 
Vow-node is a small extension for Vow to work with nodejs-style callbacks
Getting Started
###In Node.js### You can install using Node Package Manager (npm):
npm install vow-nodeAPI
####promisify(fn)####
Transforms given function fn to a function that returns promise.
var fs = require('fs'),
readFile = vowNode.promisify(fs.readFile);
readFile('package.json').then(function(content) {
console.log(content);
});
####invoke(fn, ...args)####
Invokes given function fn with arguments args.
var fs = require('fs');
vowNode.invoke(fs.readFile, 'package.json').then(function(content) {
console.log(content);
});