I want to use d3 cloud (https://github.com/jasondavies/d3-cloud) in my django project.
but the library source is compiled by Node JS.. so that is like
var dispatch = require("d3-dispatch").dispatch;
module.exports = function() {
var size = [256, 256],
text = cloudText,
But I can't use Node JS in my django project..how can i use that library in my project?
T_T