3

I have to test all my js files through command line in development environment before push to production.how should i integrate this 3? so that i can run

jslint jsfile.js or jslint jsfile1.js jsfile2.js etc 

similarly jsdoc to produce my jsdoc style api documents.

any idea or suggestion will be highly appreciated.

paul
  • 1,124
  • 9
  • 27
  • 45

1 Answers1

1

You may find jslint4java useful to help you with this. In particular, you can automate this step as part of an ant build.

Dominic Mitchell
  • 11,861
  • 4
  • 29
  • 30
  • I am looking for a Rhino based solution ..since JsLint and JsDoc both runs using Rhino... – paul Jun 15 '11 at 05:21