
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
Make d3 data functions use promises instead of callbacks.
This library uses ES6 Promise. (http://www.html5rocks.com/en/tutorials/es6/promises/) To bring browsers that lack a complete promises implementation up to spec compliance, or add promises to other browsers and Node.js, check out the polyfill (2k gzipped).
Note: v2.0.0 onwards supports D3 v4. For D3 v3, please use v1.x.x.
bower install d3.promise --save
or
npm install d3.promise --save
This library can be imported using standard <script> as well as CommonJS (node.js/browserify) and AMD (such as RequireJS).
Note: Since v1.0.0, the minified output was move from src/ to dist/.
var promise = d3.promise.csv('test.csv');
promise.then(function(data){}, function(error){});
var promise = d3.promise.tsv('test.tsv');
promise.then(function(data){}, function(error){});
var promise = d3.promise.json('test.json')
promise.then(function(data){}, function(error){});
var promise = d3.promise.html('test.html')
promise.then(function(data){}, function(error){});
var promise = d3.promise.text('test.txt')
promise.then(function(data){}, function(error){});
var promise = d3.promise.xml('test.xml')
promise.then(function(data){}, function(error){});
Copyright 2015-2016 Krist Wongsuphasawat. Licensed under the Apache License, Version 2.0
FAQs
d3.csv & friends that return promises instead of accepting callbacks
The npm package d3.promise receives a total of 4 weekly downloads. As such, d3.promise popularity was classified as not popular.
We found that d3.promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.