我想在 node.js shell脚本中使用opening_hours.js。该库及其依赖项SunCalc在本地可用:
我想在脚本中使用 opening_hours.js ,如下所示:
#!/usr/bin/env node
// TODO: load libraries
var oh = new opening_hours('We 12:00-14:00');
感兴趣的可能是javascript文件的以下摘录:
来自 opening_hours.js :// make the library accessible for the outside world {{{
if (typeof exports === 'object') {
var moment, SunCalc, i18n;
// For Node.js.
SunCalc = root.SunCalc || require('suncalc');
try { // as long as it is an optional dependency
moment = root.moment || require('moment');
} catch (error_pass) { error_pass }
try { // as long as it is an optional dependency
i18n = require('./locales/core');
} catch (error_pass) { error_pass }
module.exports = factory(SunCalc, moment, i18n, holiday_definitions, word_error_correction, lang);
} else {
// For browsers.
root.opening_hours = factory(root.SunCalc, root.moment, root.i18n, holiday_definitions, word_error_correction, lang);
}
//* }}} */
来自 suncalc.js 的:
// export as AMD module / Node module / browser variable
if (typeof define === 'function' && define.amd) define(SunCalc);
else if (typeof module !== 'undefined') module.exports = SunCalc;
else window.SunCalc = SunCalc;
答案 0 :(得分:2)
问题是opening_hours.js
期望SunCalc作为NPM模块安装。您需要更新发布的代码中的require
语句以指向本地SunCalc文件:
// make the library accessible for the outside world {{{
if (typeof exports === 'object') {
var moment, SunCalc, i18n;
// For Node.js.
SunCalc = root.SunCalc || require('./suncalc'); // CHANGED
try { // as long as it is an optional dependency
moment = root.moment || require('moment');
} catch (error_pass) { error_pass }
try { // as long as it is an optional dependency
i18n = require('./locales/core');
} catch (error_pass) { error_pass }
module.exports = factory(SunCalc, moment, i18n, holiday_definitions, word_error_correction, lang);
} else {
// For browsers.
root.opening_hours = factory(root.SunCalc, root.moment, root.i18n, holiday_definitions, word_error_correction, lang);
}
//* }}} */