https://github.com/caiogondim/js-console-sublime-snippets
:computer: JavaScript and CoffeeScript Console snippets
https://github.com/caiogondim/js-console-sublime-snippets
Last synced: about 2 months ago
JSON representation
:computer: JavaScript and CoffeeScript Console snippets
- Host: GitHub
- URL: https://github.com/caiogondim/js-console-sublime-snippets
- Owner: caiogondim
- Created: 2013-02-18T02:56:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-07-25T14:24:02.000Z (almost 8 years ago)
- Last Synced: 2025-03-24T21:51:09.970Z (3 months ago)
- Language: CoffeeScript
- Homepage: http://goo.gl/JMd2H9
- Size: 1.41 MB
- Stars: 61
- Watchers: 4
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Console snippets [](https://travis-ci.org/caiogondim/js-console-sublime-snippets)
Snippets and Code completion for Sublime Text 2.
Works with JavaScript and CoffeeScript syntax.To install through [Package Control](http://wbond.net/sublime_packages/package_control),
search for **JavaScript Console**. If you still don't have Package Control in Sublime Text, [go get it](http://wbond.net/sublime_packages/package_control/installation).
It's pure awesomeness. If you insist to not install it, you can download the package and
put it manually inside your `Pacakages` directory. It should work but will not update automatically.You can get the documentation about each method in the [Firebug API documentation](http://getfirebug.com/wiki/index.php/Console_API)
or the [Chrome DevTools documentation](https://developers.google.com/chrome-developer-tools/docs/console).## Snippets
Snippets are the fastest way to code.
To trigger a method of the [Console API](http://getfirebug.com/wiki/index.php/Console_API)
just put a `>` followed by it's name, like so:
`>log` expands to `console.log()`
`>info` expands to `console.info()`
You got the point.
## Code completion
If you're more into code completion, we got you covered too.
Just start typing the name of the method and the methods should start appearing.
## Methods covered
- console.assert()
- console.clear()
- console.count()
- console.debug()
- console.dir()
- console.dirxml()
- console.error()
- console.exception()
- console.group()
- console.groupCollapsed()
- console.groupEnd()
- console.info()
- console.log()
- console.profile()
- console.profileEnd()
- console.tab()
- console.table()
- console.time()
- console.timeEnd()
- console.timeStamp()
- console.warn()## License
The MIT License (MIT)
Copyright (c) 2014 [Caio Gondim](http://caiogondim.com)
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.