Skip to content
Liang Gong edited this page Jan 25, 2016 · 7 revisions

Introduction

JavaScript is becoming one of the most popular languages, yet it is known for its suboptimal design. To effectively use JavaScript despite its design flaws, developers try to follow informal code quality rules that help avoiding correctness, maintainability, performance, and security problems. Lightweight static analyses, implemented in "lint-like" tools, are widely used to find violations of these rules, but are of limited use because of the language's dynamic nature. This paper presents DLint, a dynamic analysis approach to check code quality rules in JavaScript. DLint consists of a generic framework and an extensible set of checkers that each address a particular rule. We formally describe and implement 28 checkers that address problems missed by state-of-the-art static approaches. Applying the approach in a comprehensive empirical study on over 200 popular web sites shows that static and dynamic checking complement each other. On average per web site, DLint detects 49 problems that are missed statically, including visible bugs on the web sites of IKEA, Hilton, eBay, and CNBC.

Authors: Liang Gong, Michael Pradel, Manu Sridharan and Koushik Sen

Resources: Preprint in ISSTA'15 | Presentation Slides | technical report

Try DLint on a VM

A step-by-step guide for trying DLint on a virtual machine.

Install DLint

Make sure that you have node.js, python 2.7 and git installed on your Mac OS, and Install DLint

Developer Guide

If you are interested in extending DLint framework, see this wiki page.