A minimal, single-user deployment of Eclipse Orion. Use for hacking files on your computer using Orion's editing environment.
help node
in the Shell page to find out more)Run npm start orion
or node [node_modules]/orion/server.js
.
Use require('orion')
to get access to our startServer function, which is suitable for use within a larger connect project:
var orion = require('orion'); var connect = require('connect'); var myapp = connect() .use(orion({ workspaceDir: '.myworkspace' })) /* .use( additional handlers ) */
For full instructions, see the Getting Started guide.
We use Mocha for our tests. Run npm test
or mocha
.
Dual-licensed under the Eclipse Public License v1.0 and the Eclipse Distribution License v1.0.