CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/index.js
Views: 787
1
if (typeof process !== 'undefined' && !process.browser && process.platform !== 'browser' && parseInt(process.versions.node.split('.')[0]) < 18) {
2
console.error('Your node version is currently', process.versions.node)
3
console.error('Please update it to a version >= 22.x.x from https://nodejs.org/')
4
process.exit(1)
5
}
6
7
module.exports = require('./lib/loader.js')
8
9