简体   繁体   中英

How to use peerjs (import and require both fail)

I want to use peerjs in a script (that I use in a html file). When I try import Peer from "peerjs" , I get an error saying "Cannot use import statement outside a module". When I try var Peer = require("peerjs") , I get an error saying simply "require is not defined". Is there a way to use peerjs ? If yes, what is it ?

if you want to use a library inside an HTML file you need to include its file in a script tag.
for example in your case, PeerJS documentation instructs to add this line:

<script src="https://unpkg.com/peerjs@1.3.2/dist/peerjs.min.js"></script>

and then you can create a peer and connect.

take a look here: PeerJS

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM