Meant to automatically fix your JavaScript errors in a non-destructive way.
npm install fixmyjs -g
fixmyjs your_file.js
var fixmyjs = require('fixmyjs')
var stringFixedCode = fixmyjs.fix(stringOfCode, objectOfOptions)
These options are mostly named after their JSHINT counterparts.
delete
- Removes deletion of variablesemptyStatement
- Removes empty statementsinitUndefined
- Rewrites variable initializations to undefinedinvalidConstructor
- Does not allow you to initialize built-in primitive constructorsisNaN
- Replaces equality to NaN with isNaNuseLiteral
- Rewrites your primitives to use their literal formWhen these are set to true the options apply.
camelcase
- Converts all identifiers to camelCasecurly
- Adds curly braces to all statements that don't have themes3
- Adds a radix parameter to parseIntnonew
- Removes new when using it for side effectssnakecase
- Convert all identifiers to snake_casemultivar
- Replace single var with multi line varplusplus
- Converts ++
and --
to += 1
|| -= 1
eqeqeq
- Enforce strict equalityWhen these are set to false the options apply.
debug
- Removes debugger statementssub
- Dot notation conversionfixmyjs supports a legacy
mode which can be used via the CLI and programatically.
fixmyjs --legacy your_file.js
var jshint = require('jshint').JSHINT
var fixmyjs = require('fixmyjs')
jshint(stringOfCode, objectOfOptions)
var stringFixedCode = fixmyjs(jshint.data(), stringOfCode, objectOfOptions).run()
Legacy uses JSHINT to determine what needs to be fixed and then uses a combination of regular expressions and string replacements to non-destructively fix any errors. While non-legacy supports more options, it is more prone to being destructive since the JavaScript is rewritten by the program.
We're planning on moving away from code string transformations and into transforming the AST directly because these rules are easier to write, maintain, and offers flexibility in terms of what can be supported. 2.0
release will have fixmyjs using recast which will make fixmyjs more performant and less destructive, esformatter will also be included to perform any style changes.