Firebase-Admin, importing it to react application throws Module not found error

孤人 提交于 2019-12-02 02:34:39

问题


I'm developming simple React application which uses firebase admin.

I have generated react application by using create react app.

Then I have installed firebase-admin by using this npm command:

npm install firebase-admin --save

In my index.js I have added this import:

 import React from 'react';
 import ReactDOM from 'react-dom';
 import App from './App';
 import registerServiceWorker from './registerServiceWorker';

 import * as admin from 'firebase-admin'

 ReactDOM.render(<App />, document.getElementById('root'));
 registerServiceWorker();

When I launch with npm start command and open my page I get this error:

 Module not found: Can't resolve 'dns' in 'D:\path\to\my\project\node_modules\firebase-admin\node_modules\isemail\lib'

Why this is happening? Did I miss something?


回答1:


Admin SDKs cannot be used in client-side environments. That includes web browsers. Admin SDKs can and should only be used in privileged server environments owned or managed by the developers of a Firebase app. You should use the Firebase web SDK in your React app.



来源:https://stackoverflow.com/questions/44582508/firebase-admin-importing-it-to-react-application-throws-module-not-found-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!