https://github.com/plotly/plotly.js
Raw File
Tip revision: 8788e57b7597ca1427d508fac8d26967781b230e authored by archmoj on 03 September 2021, 20:35:57 UTC
2.5.0
Tip revision: 8788e57
test_requirejs.js
var JSDOM = require('jsdom').JSDOM;
global.document = new JSDOM('<!DOCTYPE html><head></head><html><body></body></html>').window.document;
global.window = document.defaultView;
global.window.document = global.document;
global.self = global.window;
global.Blob = global.window.Blob;
global.DOMParser = global.window.DOMParser;
global.getComputedStyle = global.window.getComputedStyle;
global.window.URL.createObjectURL = function() {};

// see: Building node modules with AMD or RequireJS https://requirejs.org/docs/node.html
if(typeof define !== 'function') {
    var define = require('amdefine')(module);
}

define(function(require) {
    var plotly = require('../dist/plotly.min.js');

    if(plotly) {
        console.log(plotly);
    } else {
        throw 'Error: loading with requirejs';
    }

    // The value returned from the function is
    // used as the module export visible to Node.
    return function() {};
});
back to top