gpt4 book ai didi

javascript - 如何将 Node js 包添加到 Meteor 应用程序中?

转载 作者:太空宇宙 更新时间:2023-11-04 01:42:45 26 4
gpt4 key购买 nike

我正在尝试让 Express 和 Multer Node.js 包与 Meteor 1.7 一起使用,但最终出现错误消息。

我遵循了本教程 https://themeteorchef.com/tutorials/using-npm-packages并采取以下步骤安装 Express 和 Multer 软件包:

  1. 创建了一个新的 meteor 项目

  2. 运行meteor npm installexpress multer --save命令

  3. 通过 api.js 文件将两个包导入到应用程序(在开发过程中导入到服务器和客户端),内容如下:

    import { Meteor } from 'meteor/meteor';
    import multer from 'multer';
    import express from 'express';
    const app = express();
    app.use(function (req, res, next) {
    console.log('Time:', Date.now())
    next()
    });
  4. 在系统控制台中,我收到以下错误:

TypeError: express is not a function

Meteor 退出时:

code 1 ==> Your application is crashing. Waiting for file change.

我做错了什么?

最佳答案

不确定是否可以将express 与meteor 一起使用。 Meteor 有一个内置的 WebApp 模块,如果您想要这样做,您可以使用它来添加自定义路由

https://docs.meteor.com/packages/webapp.html

关于javascript - 如何将 Node js 包添加到 Meteor 应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52377183/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com