Package Exports
- brackets
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (brackets) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Node-Brackets
Node-Brackets is a Node.js module implemented as Connect middleware which integrates Adobe Brackets code editor in Node.js based web applications. It provides exceptionally convenient way to manage, edit and test project files directly on the server via web browser. Brackets doesn't have to be installed on client machines, it opens in a web browser.
Installation
Install from npm:
$ npm install bracketsUsage Examples
var connect = require('connect'),
brackets = require('brackets');
connect()
.use('/brackets', brackets())
.use(function (req, res) {
res.end('Hello World');
})
.listen(3000);