最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin3浏览0评论

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 mand:

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 mand 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?

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 mand:

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 mand 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?

Share Improve this question edited Jun 16, 2017 at 7:53 KENdi 7,7712 gold badges17 silver badges31 bronze badges asked Jun 16, 2017 at 6:42 Mr.DMr.D 7,89315 gold badges69 silver badges126 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 12

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.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论