UNPKG

962 BMarkdownView Raw
1Node-Brackets
2-------------
3
4Node-Brackets is a [Node.js](http://nodejs.org) module implemented as Connect middleware which
5integrates [Adobe Brackets](http://brackets.io/) code editor in Node.js based web applications.
6It provides exceptionally convenient way to manage, edit and test project files
7directly on the server via web browser. Brackets doesn't have to be installed on
8client machines, it opens in a web browser.
9
10Installation
11------------
12
13Install from npm:
14
15 $ npm install brackets
16
17Usage Examples
18--------------
19
20```js
21var connect = require('connect'),
22 brackets = require('brackets');
23
24 connect()
25 .use('/brackets', brackets())
26 .use(function (req, res) {
27 res.end('Hello World');
28 })
29 .listen(3000);
30```
31
32Security Considerations
33-----------------------
34
35Browser Compatibility
36---------------------
37
38Known Issues
39------------
40
41Roadmap
42-------
\No newline at end of file