| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 0.14.0 source code.tar.gz | 2025-01-06 | 10.8 MB | |
| 0.14.0 source code.zip | 2025-01-06 | 10.9 MB | |
| README.md | 2025-01-06 | 1.0 kB | |
| Totals: 3 Items | 21.7 MB | 0 | |
What's Changed
- Update socket.io to 4.8.1 with open-easyrtc 2.1.0 by @vincentfretin in https://github.com/networked-aframe/networked-aframe/pull/484 and https://github.com/networked-aframe/networked-aframe/pull/486
Full Changelog: https://github.com/networked-aframe/networked-aframe/compare/0.13.0...0.14.0
How to update
To update your project, be sure you use latest socket.io client, replace
:::html
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.5.0/socket.io.slim.js"></script>
by
:::html
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.8.1/socket.io.min.js"></script>
in server.js, replace
:::js
const socketServer = socketIo.listen(webServer, {"log level": 1});
by
:::js
const socketServer = socketIo(webServer, {"log level": 1});
in package.json:
:::json
"networked-aframe": "^0.14.0"
and get the updated dependencies:
:::sh
rm -rf package-lock.json node_modules
npm install