JSLint and JSMin

It recently came to our attention that not everyone knows about two critical free tools for any type of AJAX development.

  • http://www.jslint.com/lint.html
  • http://www.crockford.com/javascript/jsmin.html

    JSMin is a tool for compressing Javascript. It will strip your white-space and comments so that all that is left is code….you know, the good stuff. It does not obfuscate the code, just shrinks it.

    JSLint will check your Javascript for basic coding issues. You gotta try them both!

  • Leave a Reply

    You must be logged in to post a comment.