Clientside
Sublime Text plugin to minify, format, and lint CSS and Javascript
Details
Installs
- Total 2K
- Win 1K
- Mac 803
- Linux 331
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text Clientside Plugin
About
- Author: Trent Richardson
- Twitter: @practicalweb
This plugin provides common tools for developing with clientside languages javascript and css. Tools for javascript include:
- JS-Beautifier to format and “Unminify”
- JSMin to minify
- JSLint to look for syntax issues
- CSSLint to look for syntax issues
Author: Trent Richardson
Prerequisites
NodeJS: http://nodejs.org/
For Ubuntu use:
sudo apt-get install nodejs
For other linux distrobutions this may be a click away in your package manager. The plugin uses nodejs to execute serverside javascript (jslint and csslint)
Install
The recommended install is via the Package Control: - Press ctrl+shift+p (Windows, Linux) or cmd+shift+p (OS X), start typing “Package” to access Package Manager commands - When the list of packages is presented, search for “Clientside”, press enter to install - Go to the Preferences -> Package Settings -> Clientside and set preferences and nodejs path
If you need to manually install: - Copy or clone the repository from https://github.com/trentrichardson/Clientside into your packages folder (“Packages/Clientside”) - Go to the Preferences -> Package Settings -> Clientside and set preferences and nodejs path
Configure
Since this plugin uses NodeJS it needs to know how to call it. Inside the configuration window there is a field for the command to call from a terminal.
If you've installed nodejs manually, it is likely accessible through the command using “node”. However, though Ubuntu's package manager you will need to
use “nodejs”. And, on some occasions, you may have to actually point to the binary file location (Mac might be /usr/local/bin/node). If you need help you
can try running in a terminal (unix or linux) the which tool: “which nodejs” or “which node”. This should print out a file path to the binary.
Further help is located in the comments of the preferences configuration files.
Each operation can handle results in the following ways (editable in the configuration): - “new” Places the results in a new unsaved file - “replace” Replaces the current selection - “clipboard” Copies the results to your clipboard - “console” Prints the results to your console. You will need to open your console (Ctl+)
Use
- With your js or css file the active document go to Tools -> Clientside -> desired tool
License
Sublime Text Clientside Plugin is licensed under the MIT license.
Copyright © 2012 Trent Richardson [http://trentrichardson.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.