Coder Social home page Coder Social logo

autocommit's Introduction

Autocommit (a JSHint Runner)

An experiment in demonstrating TDD.

The commits in this repository show how an application developed with test-driven development (TDD) grows and changes over time. Most of the commits were automatically generated: every time the build status toggled from "Passing" to "Failing" and back, my build script automatically committed the changes. By paging through the commit logs, you can see how the code evolved over time. (See below for details.)

The application is a simple runner for JSHint, a code quality tool based on JSLint. The autocommit experiment was suggested by azundo on Hacker News, in response to the announcement of my upcoming screencast series, Let's Code: Test-Driven Javascript.

Let's Code: Test-Driven Javascript

Let's Code: Test-Driven Javascript is my new screencast series focusing on Javascript, TDD, and Node.js. My intention is to create an invaluable resource for anyone doing professional Javascript development. If you found this Autocommit experiment interesting, you'll probably like Let's Code: Test-Driven Javascript.

I'm launching the series through Kickstarter so I can give it the time and attention it deserves. For more information or to back the project, check out the Kickstarter.

The code in this repository uses Mocha and expect.js for testing. The actual screencast could well use a different test framework or style. Once the project is funded, I'll take a second look at the Javascript testing ecosystem and make a decision about which framework to use. I'll also talk through my decision-making process on the Live channel of the screencast.

Reviewing the Commit Logs

Each commit shows a small step in the evolution of this project, as the code switched from passing its tests to failing its tests (and vice-versa). The commits are online here. The last commit is here and the first commit is here.

GitHub isn't the most convenient way to review the commits, but it works. For a more convenient approach, download a copy of the repository from GitHub and view the history using gitk or the Mac GitHub application. To use gitk, open a terminal or command window, switch to the root of the Autocommit repository, and type gitk.

About the Runner

Beware of bugs in this code; I have only tested it, not tried it. (With apologies to Donald Knuth.)

The runner in this repository provides a convenient front-end to JSHint, a linter for Javascript. It should also work for JSLint.

You're welcome to use the runner for your own projects. (See license below.) This project was just a quick hack, so I can't vouch for its robustness, but it should work in most cases. One flaw I'm aware of is that it assumes all files are UTF8-encoded, which may not be true for your system. It also has no exception handling.

The runner is a Node.js module. It exposes three functions:

validateSource(sourceCode, [options], [globals], [description])

Run JSHint on raw source code and output the results to the console (using console.log()). If the code failed to validate, the details are also output to the console. If the code succeeded, a one-line ok message is displayed. If provided, description will be prepended to the pass/fail message, like this: description ok.

This function returns true if the code was valid or false if errors were found. options and globals are passed through to JSHint.

validateFile(filename, [options], [globals])

Same as validateSource, except that the source code is read from a file.

validateFileList(fileList, [options], [globals])

Validates multiple files and outputs the results for each one. All files are validated even when some fail.

fileList is expected to be an array. This function returns true if all files are valid and false otherwise.

License

Copyright (c) 2012 James Shore

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 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.

autocommit's People

Contributors

jamesshore avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.