Recommended extensions for sublime text front-end development

Source: Internet
Author: User
Sublime Text recommended for common extension plug-ins in front-end development

Sublime text is recognized by programmers as a magic code, with beautiful user interfaces and powerful functions.

More importantly, sublime text is easy to expand and many developers contribute plug-ins to it, and package control, a package management tool, can be used for easy installation and management.

How to install package Control

First, open the console by pressing CTRL + 'or View> show console, and then paste the corresponding Python installation code.

Sublime text 2 installation code:

1
import urllib2,os; pf=’Package Control.sublime-package’; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler( ))); open( os.path.join( ipp, pf), ‘wb’ ).write( urllib2.urlopen( ‘http://sublime.wbond.net/’ +pf.replace( ‘ ‘,’%20′ )).read()); print( ‘Please restart Sublime Text to finish installation’)

Sublime Text 3 installation code:

1
import urllib.request,os; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), ‘wb‘).write(urllib.request.urlopen( ‘http://sublime.wbond.net/‘ + pf.replace(‘ ‘,‘%20‘)).read())
Recommendation of common frontend extensions
  1. Emmet -- sublime text extension officially provided by Emmet;
  2. Sublime? Linter-code verification plug-in that supports 16 languages, including HTML, CSS, JS, PHP, Java, and C ++;
  3. HTML5 -- HTML5 bundle for sublime text 2;
  4. Alignment -- code alignment plug-in;
  5. Bracket? Highlighter -- matching of brackets highlighted;
  6. Git-plug-ins integrating git functions;
  7. Jquery-code smart notification plug-in;
  8. Less -- less code highlight plug-in;
  9. JS? Format -- JavaScript code formatting plug-in;
  10. Tag -- indent, complete, and verify html/XML tags;
  11. Livereload -- instant page refresh;
  12. Pretty JSON -- JSON beautification extension;
  13. Can I use -- Query CSS property compatibility;
  14. Coffee? Script -- coffee? Script code highlighting, verification, and compilation;
  15. Color? Picker-cross-platform color Reader plug-in;
  16. Minifier -- CSS, JS Compression
  17. Livestyle -- CSS style table bidirectional Synchronization

Recommended extensions for sublime text front-end development

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.