https://github.com/smithclay/cloud-jshint
"jshint in the cloud" - cloud-jshint is a RESTful wrapper around jshint written in node.js.
https://github.com/smithclay/cloud-jshint
Last synced: 10 months ago
JSON representation
"jshint in the cloud" - cloud-jshint is a RESTful wrapper around jshint written in node.js.
- Host: GitHub
- URL: https://github.com/smithclay/cloud-jshint
- Owner: smithclay
- Created: 2012-02-07T06:41:21.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-07-09T04:29:18.000Z (almost 14 years ago)
- Last Synced: 2024-04-14T22:49:11.689Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# cloud-jshint
[](http://travis-ci.org/smithclay/jspinch])
cloud-jshint is a RESTful web service wrapper around [JSHint](https://github.com/jshint/jshint/) that lets developers track the JavaScript code quality of projects.
## Motivation
JavaScript projects start small. As they grow, it becomes important to enforce good style and convention. cloud-jshint uses JSHint to create reports detailing errors in JavaScript files.
## Installation
TBD
## Usage
You can run it directly from the command line or extend it programmatically in your node scripts.
### curl
To get jshint errors for a single file
``` sh
$ curl -Ffile=@path/to/file.js http://cloud-jshint-server/wherever/that/is
```