Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drnic/javascript-node.tmbundle
TextMate bundle for node.js
https://github.com/drnic/javascript-node.tmbundle
Last synced: 29 days ago
JSON representation
TextMate bundle for node.js
- Host: GitHub
- URL: https://github.com/drnic/javascript-node.tmbundle
- Owner: drnic
- Created: 2009-12-16T06:30:25.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2011-08-26T06:13:01.000Z (about 13 years ago)
- Last Synced: 2023-11-07T16:14:32.870Z (about 1 year ago)
- Size: 117 KB
- Stars: 132
- Watchers: 4
- Forks: 27
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Textmate Bundle for Node.JS
## Common commands and short-cuts
Important: Change your current grammar to "JavaScript Node" (short cut: Shift+Ctrl+Alt+N)
* Cmd+R - run current file within node
* req => var sys = require('sys');
* mixin => process.mixin(exports, {...});
* exp => exports.func_name = function() {...};
* process snippets
* .lis - .addListener(...)
* .cb - .addCallback(...)
* .errb - .addErrback(...)
* .canb - .addCancalback(...)
* sys module:
* puts - sys.puts('string');
* p - sys.p('string');
* debug - sys.debug('string');
* error - sys.error('string');
* exec - sys.exec('command').addCallback(...);
* posix module:
* cat, mkdir, readdir, rename, rmdir, statOthers:
* app => if (module.id == require.main.id) { .. }
## Installation
mkdir -p ~/Library/Application\ Support/TextMate/Bundles/
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/drnic/javascript-node.tmbundle.git "JavaScript Node.tmbundle"
osascript -e 'tell app "TextMate" to reload bundles'Alternately, in TextMate, from your drop down menu, select Bundles -> Bundle Editor -> Reload Bundles.
## Credits
The Node.JS TM Bundle is currently authored by Dr Nic Williams. Contributors and co-maintainers are welcome.
* **Dr Nic** - Author/Main contributor
## License
Copyright (c) 2009-2010 Dr Nic Williams, Mocra
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.