An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# JavaScript Console snippets [![Build Status](https://secure.travis-ci.org/caiogondim/js-console-sublime-snippets.png?branch=master)](https://travis-ci.org/caiogondim/js-console-sublime-snippets)

JS Console 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:

![snippets](https://raw.github.com/caiogondim/js-console-sublime-snippets/master/snippets.gif)

`>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.

![console](https://raw.github.com/caiogondim/js-console-sublime-snippets/master/console.png)

## 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.