├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.html ├── keymaps └── development-server.cson ├── lib ├── development-server.coffee └── views │ ├── browser.coffee │ ├── cache.coffee │ ├── http.coffee │ ├── index.coffee │ ├── livereload.coffee │ ├── notify │ ├── index.coffee │ ├── models │ │ ├── note.coffee │ │ └── notify.coffee │ └── note.coffee │ ├── shortcuts.coffee │ ├── terminal.coffee │ ├── test-runner │ └── index.coffee │ └── utils.coffee ├── menus └── development-server.cson ├── package.json ├── screenshot.png ├── spec ├── development-server-spec.coffee └── development-server-view-spec.coffee └── stylesheets ├── development-server.less ├── note.less ├── notes.less ├── position.less └── variables.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | .developmentserverrc 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 0.2.1 - 2 | * Added Support for multiple tabs 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/index.html -------------------------------------------------------------------------------- /keymaps/development-server.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/keymaps/development-server.cson -------------------------------------------------------------------------------- /lib/development-server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/development-server.coffee -------------------------------------------------------------------------------- /lib/views/browser.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/browser.coffee -------------------------------------------------------------------------------- /lib/views/cache.coffee: -------------------------------------------------------------------------------- 1 | { createDat } = require 'dat' 2 | -------------------------------------------------------------------------------- /lib/views/http.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/http.coffee -------------------------------------------------------------------------------- /lib/views/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/index.coffee -------------------------------------------------------------------------------- /lib/views/livereload.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/livereload.coffee -------------------------------------------------------------------------------- /lib/views/notify/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/notify/index.coffee -------------------------------------------------------------------------------- /lib/views/notify/models/note.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/notify/models/note.coffee -------------------------------------------------------------------------------- /lib/views/notify/models/notify.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/notify/models/notify.coffee -------------------------------------------------------------------------------- /lib/views/notify/note.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/notify/note.coffee -------------------------------------------------------------------------------- /lib/views/shortcuts.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/shortcuts.coffee -------------------------------------------------------------------------------- /lib/views/terminal.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/terminal.coffee -------------------------------------------------------------------------------- /lib/views/test-runner/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/test-runner/index.coffee -------------------------------------------------------------------------------- /lib/views/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/lib/views/utils.coffee -------------------------------------------------------------------------------- /menus/development-server.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/menus/development-server.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/screenshot.png -------------------------------------------------------------------------------- /spec/development-server-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/spec/development-server-spec.coffee -------------------------------------------------------------------------------- /spec/development-server-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/spec/development-server-view-spec.coffee -------------------------------------------------------------------------------- /stylesheets/development-server.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/stylesheets/development-server.less -------------------------------------------------------------------------------- /stylesheets/note.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/stylesheets/note.less -------------------------------------------------------------------------------- /stylesheets/notes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/stylesheets/notes.less -------------------------------------------------------------------------------- /stylesheets/position.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/stylesheets/position.less -------------------------------------------------------------------------------- /stylesheets/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joaoafrmartins/development-server/HEAD/stylesheets/variables.less --------------------------------------------------------------------------------