我正在使用node.js(不是打字稿),并且想对时间序列数据进行一些汇总。我遇到了Pond.js(https://github.com/esnet/pond),它似乎具有我需要的功能。 不幸的是,我很热衷于在项目中使用它。
我安装了npm,并且我的package.json
包括:"pond": "1.0.2"
。
推荐的方法(http://software.es.net/pond/#/)是:
const {TimeSeries} = require("pond"); // instructions write "pondjs" but that is not found
仅查看模块会导致未定义:
console.log("Pond:",JSON.stringify(TimeSeries));
我在这里做什么错了?
谢谢。
答案 0 :(得分:0)
问题似乎与使用TypeScript开发的最新版本的池塘有关。
按照上述步骤,在先前版本(pondjs 0.8.9)中使用JavaScript在node.js下执行没有问题。
答案 1 :(得分:0)
您还可以像这样从池塘js导入TS:import {TimeSeries} from 'pondjs';
(更安全)
最有可能是上述人员提到的版本,冲突或某些错误。