./src/index.js 未找到模块:无法解析“aws-amplify”React
2021-03-23
1080
我正在尝试学习 AWS 和 React。当我使用“NPM start”在本地机器上运行 React 应用时,我不断收到以下错误。
./src/index.js Module not found: Can't resolve 'aws-amplify' in 'C:\Users\pull-transactions\src'
at Resolver.resolveModule (node_modules/jest-runtime/node_modules/jest-resolve/build/index.js:306:11) at Object. (src/components/PlaidLink.js:3:1)
index.js 配置:
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import Amplify from 'aws-amplify';
import config from './aws-exports';
Amplify.configure(config);
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
我花了几个小时在 Google 上搜索,但找不到任何相关信息。我有另一个运行良好的应用,并且两者的文件结构看起来相同。任何帮助都非常感谢。如果您需要更多信息,请告诉我。
1个回答
您必须先安装该包才能使用它。
$ npm install # installs packages listed in your package.json file
$ npm install --save aws-amplify # installs the aws-amplify package and saves it to your package.json file
Ayushya
2021-03-23