以下步骤来自:https://github.com/appfeel/node-pushnotifications#installation
我已经安装了软件包:
npm install node-pushnotifications --save
+ node-pushnotifications@1.1.9
updated 1 package and audited 244 packages in 14.663s
found 0 vulnerabilities
使用import PushNotifications from 'node-pushnotifications';
返回错误:
> import PushNotifications from 'node-pushnotifications';
import PushNotifications from 'node-pushnotifications';
^^^^^^^^^^^^^^^^^
我不熟悉这种导入库的方法。对于我使用过的所有其他东西(例如表达),导入如下:
var express = require('express');
我错过了一步吗?
如何安装和导入PushNotifications?
答案 0 :(得分:0)
更改import PushNotifications from 'node-pushnotifications';
到
var PushNotifications = require('node-pushnotifications')
解决了这个问题。
答案 1 :(得分:0)
Node.JS v10.4.1
不支持ES6模块。虽然可以将import
语句更改为require
,但是如果您想保留import
语法,还有其他两个选项也可以使用。
答案 2 :(得分:-1)
尝试:
node-pushnotifications
删除package.json
npm i node-pushnotifications
安装yarn