GithubHelp home page GithubHelp logo

node-semver's Introduction

semver(1) -- The semantic versioner for npm

Install

npm install semver

Usage

As a node module:

const semver = require('semver')

semver.valid('1.2.3') // '1.2.3'
semver.valid('a.b.c') // null
semver.clean('  =v1.2.3   ') // '1.2.3'
semver.satisfies('1.2.3', '1.x || >=2.5.0 || 5.0.0 - 7.2.3') // true
semver.gt('1.2.3', '9.8.7') // false
semver.lt('1.2.3', '9.8.7') // true
semver.minVersion('>=1.0.0') // '1.0.0'
semver.valid(semver.coerce('v2')) // '2.0.0'
semver.valid(semver.coerce('42.6.7.9.3-alpha')) // '42.6.7'

You can also just load the module for the function that you care about if you'd like to minimize your footprint.

// load the whole API at once in a single object
const semver = require('semver')

// or just load the bits you need
// all of them listed here, just pick and choose what you want

// classes
const SemVer = require('semver/classes/semver')
const Comparator = require('semver/classes/comparator')
const Range = require('semver/classes/range')

// functions for working with versions
const semverParse = require('semver/functions/parse')
const semverValid = require('semver/functions/valid')
const semverClean = require('semver/functions/clean')
const semverInc = require('semver/functions/inc')
const semverDiff = require('semver/functions/diff')
const semverMajor = require('semver/functions/major')
const semverMinor = require('semver/functions/minor')
const semverPatch = require('semver/functions/patch')
const semverPrerelease = require('semver/functions/prerelease')
const semverCompare = require('semver/functions/compare')
const semverRcompare = require('semver/functions/rcompare')
const semverCompareLoose = require('semver/functions/compare-loose')
const semverCompareBuild = require('semver/functions/compare-build')
const semverSort = require('semver/functions/sort')
const semverRsort = require('semver/functions/rsort')

// low-level comparators between versions
const semverGt = require('semver/functions/gt')
const semverLt = require('semver/functions/lt')
const semverEq = require('semver/functions/eq')
const semverNeq = require('semver/functions/neq')
const semverGte = require('semver/functions/gte')
const semverLte = require('semver/functions/lte')
const semverCmp = require('semver/functions/cmp')
const semverCoerce = require('semver/functions/coerce')

// working with ranges
const semverSatisfies = require('semver/functions/satisfies')
const semverMaxSatisfying = require('semver/ranges/max-satisfying')
const semverMinSatisfying = require('semver/ranges/min-satisfying')
const semverToComparators = require('semver/ranges/to-comparators')
const semverMinVersion = require('semver/ranges/min-version')
const semverValidRange = require('semver/ranges/valid')
const semverOutside = require('semver/ranges/outside')
const semverGtr = require('semver/ranges/gtr')
const semverLtr = require('semver/ranges/ltr')
const semverIntersects = require('semver/ranges/intersects')
const semverSimplifyRange = require('semver/ranges/simplify')
const semverRangeSubset = require('semver/ranges/subset')

As a command-line utility:

$ semver -h

A JavaScript implementation of the https://semver.org/ specification
Copyright Isaac Z. Schlueter

Usage: semver [options] <version> [<version> [...]]
Prints valid versions sorted by SemVer precedence

Options:
-r --range <range>
        Print versions that match the specified range.

-i --increment [<level>]
        Increment a version by the specified level.  Level can
        be one of: major, minor, patch, premajor, preminor,
        prepatch, or prerelease.  Default level is 'patch'.
        Only one version may be specified.

--preid <identifier>
        Identifier to be used to prefix premajor, preminor,
        prepatch or prerelease version increments.

-l --loose
        Interpret versions and ranges loosely

-n <0|1>
        This is the base to be used for the prerelease identifier.

-p --include-prerelease
        Always include prerelease versions in range matching

-c --coerce
        Coerce a string into SemVer if possible
        (does not imply --loose)

--rtl
        Coerce version strings right to left

--ltr
        Coerce version strings left to right (default)

Program exits successfully if any valid version satisfies
all supplied ranges, and prints all satisfying versions.

If no satisfying versions are found, then exits failure.

Versions are printed in ascending order, so supplying
multiple versions to the utility will just sort them.

Versions

A "version" is described by the v2.0.0 specification found at https://semver.org/.

A leading "=" or "v" character is stripped off and ignored.

Ranges

A version range is a set of comparators that specify versions that satisfy the range.

A comparator is composed of an operator and a version. The set of primitive operators is:

  • < Less than
  • <= Less than or equal to
  • > Greater than
  • >= Greater than or equal to
  • = Equal. If no operator is specified, then equality is assumed, so this operator is optional but MAY be included.

For example, the comparator >=1.2.7 would match the versions 1.2.7, 1.2.8, 2.5.3, and 1.3.9, but not the versions 1.2.6 or 1.1.0. The comparator >1 is equivalent to >=2.0.0 and would match the versions 2.0.0 and 3.1.0, but not the versions 1.0.1 or 1.1.0.

Comparators can be joined by whitespace to form a comparator set, which is satisfied by the intersection of all of the comparators it includes.

A range is composed of one or more comparator sets, joined by ||. A version matches a range if and only if every comparator in at least one of the ||-separated comparator sets is satisfied by the version.

For example, the range >=1.2.7 <1.3.0 would match the versions 1.2.7, 1.2.8, and 1.2.99, but not the versions 1.2.6, 1.3.0, or 1.1.0.

The range 1.2.7 || >=1.2.9 <2.0.0 would match the versions 1.2.7, 1.2.9, and 1.4.6, but not the versions 1.2.8 or 2.0.0.

Prerelease Tags

If a version has a prerelease tag (for example, 1.2.3-alpha.3) then it will only be allowed to satisfy comparator sets if at least one comparator with the same [major, minor, patch] tuple also has a prerelease tag.

For example, the range >1.2.3-alpha.3 would be allowed to match the version 1.2.3-alpha.7, but it would not be satisfied by 3.4.5-alpha.9, even though 3.4.5-alpha.9 is technically "greater than" 1.2.3-alpha.3 according to the SemVer sort rules. The version range only accepts prerelease tags on the 1.2.3 version. Version 3.4.5 would satisfy the range because it does not have a prerelease flag, and 3.4.5 is greater than 1.2.3-alpha.7.

The purpose of this behavior is twofold. First, prerelease versions frequently are updated very quickly, and contain many breaking changes that are (by the author's design) not yet fit for public consumption. Therefore, by default, they are excluded from range-matching semantics.

Second, a user who has opted into using a prerelease version has indicated the intent to use that specific set of alpha/beta/rc versions. By including a prerelease tag in the range, the user is indicating that they are aware of the risk. However, it is still not appropriate to assume that they have opted into taking a similar risk on the next set of prerelease versions.

Note that this behavior can be suppressed (treating all prerelease versions as if they were normal versions, for range-matching) by setting the includePrerelease flag on the options object to any functions that do range matching.

Prerelease Identifiers

The method .inc takes an additional identifier string argument that will append the value of the string as a prerelease identifier:

semver.inc('1.2.3', 'prerelease', 'beta')
// '1.2.4-beta.0'

command-line example:

$ semver 1.2.3 -i prerelease --preid beta
1.2.4-beta.0

Which then can be used to increment further:

$ semver 1.2.4-beta.0 -i prerelease
1.2.4-beta.1

Prerelease Identifier Base

The method .inc takes an optional parameter 'identifierBase' string that will let you let your prerelease number as zero-based or one-based. Set to false to omit the prerelease number altogether. If you do not specify this parameter, it will default to zero-based.

semver.inc('1.2.3', 'prerelease', 'beta', '1')
// '1.2.4-beta.1'
semver.inc('1.2.3', 'prerelease', 'beta', false)
// '1.2.4-beta'

command-line example:

$ semver 1.2.3 -i prerelease --preid beta -n 1
1.2.4-beta.1
$ semver 1.2.3 -i prerelease --preid beta -n false
1.2.4-beta

Advanced Range Syntax

Advanced range syntax desugars to primitive comparators in deterministic ways.

Advanced ranges may be combined in the same way as primitive comparators using white space or ||.

Hyphen Ranges X.Y.Z - A.B.C

Specifies an inclusive set.

  • 1.2.3 - 2.3.4 := >=1.2.3 <=2.3.4

If a partial version is provided as the first version in the inclusive range, then the missing pieces are replaced with zeroes.

  • 1.2 - 2.3.4 := >=1.2.0 <=2.3.4

If a partial version is provided as the second version in the inclusive range, then all versions that start with the supplied parts of the tuple are accepted, but nothing that would be greater than the provided tuple parts.

  • 1.2.3 - 2.3 := >=1.2.3 <2.4.0-0
  • 1.2.3 - 2 := >=1.2.3 <3.0.0-0

X-Ranges 1.2.x 1.X 1.2.* *

Any of X, x, or * may be used to "stand in" for one of the numeric values in the [major, minor, patch] tuple.

  • * := >=0.0.0 (Any non-prerelease version satisfies, unless includePrerelease is specified, in which case any version at all satisfies)
  • 1.x := >=1.0.0 <2.0.0-0 (Matching major version)
  • 1.2.x := >=1.2.0 <1.3.0-0 (Matching major and minor versions)

A partial version range is treated as an X-Range, so the special character is in fact optional.

  • "" (empty string) := * := >=0.0.0
  • 1 := 1.x.x := >=1.0.0 <2.0.0-0
  • 1.2 := 1.2.x := >=1.2.0 <1.3.0-0

Tilde Ranges ~1.2.3 ~1.2 ~1

Allows patch-level changes if a minor version is specified on the comparator. Allows minor-level changes if not.

  • ~1.2.3 := >=1.2.3 <1.(2+1).0 := >=1.2.3 <1.3.0-0
  • ~1.2 := >=1.2.0 <1.(2+1).0 := >=1.2.0 <1.3.0-0 (Same as 1.2.x)
  • ~1 := >=1.0.0 <(1+1).0.0 := >=1.0.0 <2.0.0-0 (Same as 1.x)
  • ~0.2.3 := >=0.2.3 <0.(2+1).0 := >=0.2.3 <0.3.0-0
  • ~0.2 := >=0.2.0 <0.(2+1).0 := >=0.2.0 <0.3.0-0 (Same as 0.2.x)
  • ~0 := >=0.0.0 <(0+1).0.0 := >=0.0.0 <1.0.0-0 (Same as 0.x)
  • ~1.2.3-beta.2 := >=1.2.3-beta.2 <1.3.0-0 Note that prereleases in the 1.2.3 version will be allowed, if they are greater than or equal to beta.2. So, 1.2.3-beta.4 would be allowed, but 1.2.4-beta.2 would not, because it is a prerelease of a different [major, minor, patch] tuple.

Caret Ranges ^1.2.3 ^0.2.5 ^0.0.4

Allows changes that do not modify the left-most non-zero element in the [major, minor, patch] tuple. In other words, this allows patch and minor updates for versions 1.0.0 and above, patch updates for versions 0.X >=0.1.0, and no updates for versions 0.0.X.

Many authors treat a 0.x version as if the x were the major "breaking-change" indicator.

Caret ranges are ideal when an author may make breaking changes between 0.2.4 and 0.3.0 releases, which is a common practice. However, it presumes that there will not be breaking changes between 0.2.4 and 0.2.5. It allows for changes that are presumed to be additive (but non-breaking), according to commonly observed practices.

  • ^1.2.3 := >=1.2.3 <2.0.0-0
  • ^0.2.3 := >=0.2.3 <0.3.0-0
  • ^0.0.3 := >=0.0.3 <0.0.4-0
  • ^1.2.3-beta.2 := >=1.2.3-beta.2 <2.0.0-0 Note that prereleases in the 1.2.3 version will be allowed, if they are greater than or equal to beta.2. So, 1.2.3-beta.4 would be allowed, but 1.2.4-beta.2 would not, because it is a prerelease of a different [major, minor, patch] tuple.
  • ^0.0.3-beta := >=0.0.3-beta <0.0.4-0 Note that prereleases in the 0.0.3 version only will be allowed, if they are greater than or equal to beta. So, 0.0.3-pr.2 would be allowed.

When parsing caret ranges, a missing patch value desugars to the number 0, but will allow flexibility within that value, even if the major and minor versions are both 0.

  • ^1.2.x := >=1.2.0 <2.0.0-0
  • ^0.0.x := >=0.0.0 <0.1.0-0
  • ^0.0 := >=0.0.0 <0.1.0-0

A missing minor and patch values will desugar to zero, but also allow flexibility within those values, even if the major version is zero.

  • ^1.x := >=1.0.0 <2.0.0-0
  • ^0.x := >=0.0.0 <1.0.0-0

Range Grammar

Putting all this together, here is a Backus-Naur grammar for ranges, for the benefit of parser authors:

range-set  ::= range ( logical-or range ) *
logical-or ::= ( ' ' ) * '||' ( ' ' ) *
range      ::= hyphen | simple ( ' ' simple ) * | ''
hyphen     ::= partial ' - ' partial
simple     ::= primitive | partial | tilde | caret
primitive  ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial
partial    ::= xr ( '.' xr ( '.' xr qualifier ? )? )?
xr         ::= 'x' | 'X' | '*' | nr
nr         ::= '0' | ['1'-'9'] ( ['0'-'9'] ) *
tilde      ::= '~' partial
caret      ::= '^' partial
qualifier  ::= ( '-' pre )? ( '+' build )?
pre        ::= parts
build      ::= parts
parts      ::= part ( '.' part ) *
part       ::= nr | [-0-9A-Za-z]+

Functions

All methods and classes take a final options object argument. All options in this object are false by default. The options supported are:

  • loose: Be more forgiving about not-quite-valid semver strings. (Any resulting output will always be 100% strict compliant, of course.) For backwards compatibility reasons, if the options argument is a boolean value instead of an object, it is interpreted to be the loose param.
  • includePrerelease: Set to suppress the default behavior of excluding prerelease tagged versions from ranges unless they are explicitly opted into.

Strict-mode Comparators and Ranges will be strict about the SemVer strings that they parse.

  • valid(v): Return the parsed version, or null if it's not valid.
  • inc(v, release, options, identifier, identifierBase): Return the version incremented by the release type (major, premajor, minor, preminor, patch, prepatch, or prerelease), or null if it's not valid
    • premajor in one call will bump the version up to the next major version and down to a prerelease of that major version. preminor, and prepatch work the same way.
    • If called from a non-prerelease version, prerelease will work the same as prepatch. It increments the patch version and then makes a prerelease. If the input version is already a prerelease it simply increments it.
    • identifier can be used to prefix premajor, preminor, prepatch, or prerelease version increments. identifierBase is the base to be used for the prerelease identifier.
  • prerelease(v): Returns an array of prerelease components, or null if none exist. Example: prerelease('1.2.3-alpha.1') -> ['alpha', 1]
  • major(v): Return the major version number.
  • minor(v): Return the minor version number.
  • patch(v): Return the patch version number.
  • intersects(r1, r2, loose): Return true if the two supplied ranges or comparators intersect.
  • parse(v): Attempt to parse a string as a semantic version, returning either a SemVer object or null.

Comparison

  • gt(v1, v2): v1 > v2
  • gte(v1, v2): v1 >= v2
  • lt(v1, v2): v1 < v2
  • lte(v1, v2): v1 <= v2
  • eq(v1, v2): v1 == v2 This is true if they're logically equivalent, even if they're not the same string. You already know how to compare strings.
  • neq(v1, v2): v1 != v2 The opposite of eq.
  • cmp(v1, comparator, v2): Pass in a comparison string, and it'll call the corresponding function above. "===" and "!==" do simple string comparison, but are included for completeness. Throws if an invalid comparison string is provided.
  • compare(v1, v2): Return 0 if v1 == v2, or 1 if v1 is greater, or -1 if v2 is greater. Sorts in ascending order if passed to Array.sort().
  • rcompare(v1, v2): The reverse of compare. Sorts an array of versions in descending order when passed to Array.sort().
  • compareBuild(v1, v2): The same as compare but considers build when two versions are equal. Sorts in ascending order if passed to Array.sort().
  • compareLoose(v1, v2): Short for compare(v1, v2, { loose: true }).
  • diff(v1, v2): Returns the difference between two versions by the release type (major, premajor, minor, preminor, patch, prepatch, or prerelease), or null if the versions are the same.

Sorting

  • sort(versions): Returns a sorted array of versions based on the compareBuild function.
  • rsort(versions): The reverse of sort. Returns an array of versions based on the compareBuild function in descending order.

Comparators

  • intersects(comparator): Return true if the comparators intersect

Ranges

  • validRange(range): Return the valid range or null if it's not valid
  • satisfies(version, range): Return true if the version satisfies the range.
  • maxSatisfying(versions, range): Return the highest version in the list that satisfies the range, or null if none of them do.
  • minSatisfying(versions, range): Return the lowest version in the list that satisfies the range, or null if none of them do.
  • minVersion(range): Return the lowest version that can match the given range.
  • gtr(version, range): Return true if the version is greater than all the versions possible in the range.
  • ltr(version, range): Return true if the version is less than all the versions possible in the range.
  • outside(version, range, hilo): Return true if the version is outside the bounds of the range in either the high or low direction. The hilo argument must be either the string '>' or '<'. (This is the function called by gtr and ltr.)
  • intersects(range): Return true if any of the range comparators intersect.
  • simplifyRange(versions, range): Return a "simplified" range that matches the same items in the versions list as the range specified. Note that it does not guarantee that it would match the same versions in all cases, only for the set of versions provided. This is useful when generating ranges by joining together multiple versions with || programmatically, to provide the user with something a bit more ergonomic. If the provided range is shorter in string-length than the generated range, then that is returned.
  • subset(subRange, superRange): Return true if the subRange range is entirely contained by the superRange range.

Note that, since ranges may be non-contiguous, a version might not be greater than a range, less than a range, or satisfy a range! For example, the range 1.2 <1.2.9 || >2.0.0 would have a hole from 1.2.9 until 2.0.0, so version 1.2.10 would not be greater than the range (because 2.0.1 satisfies, which is higher), nor less than the range (since 1.2.8 satisfies, which is lower), and it also does not satisfy the range.

If you want to know if a version satisfies or does not satisfy a range, use the satisfies(version, range) function.

Coercion

  • coerce(version, options): Coerces a string to semver if possible

This aims to provide a very forgiving translation of a non-semver string to semver. It looks for the first digit in a string and consumes all remaining characters which satisfy at least a partial semver (e.g., 1, 1.2, 1.2.3) up to the max permitted length (256 characters). Longer versions are simply truncated (4.6.3.9.2-alpha2 becomes 4.6.3). All surrounding text is simply ignored (v3.4 replaces v3.3.1 becomes 3.4.0). Only text which lacks digits will fail coercion (version one is not valid). The maximum length for any semver component considered for coercion is 16 characters; longer components will be ignored (10000000000000000.4.7.4 becomes 4.7.4). The maximum value for any semver component is Number.MAX_SAFE_INTEGER || (2**53 - 1); higher value components are invalid (9999999999999999.4.7.4 is likely invalid).

If the options.rtl flag is set, then coerce will return the right-most coercible tuple that does not share an ending index with a longer coercible tuple. For example, 1.2.3.4 will return 2.3.4 in rtl mode, not 4.0.0. 1.2.3/4 will return 4.0.0, because the 4 is not a part of any other overlapping SemVer tuple.

If the options.includePrerelease flag is set, then the coerce result will contain prerelease and build parts of a version. For example, 1.2.3.4-rc.1+rev.2 will preserve prerelease rc.1 and build rev.2 in the result.

Clean

  • clean(version): Clean a string to be a valid semver if possible

This will return a cleaned and trimmed semver version. If the provided version is not valid a null will be returned. This does not work for ranges.

ex.

  • s.clean(' = v 2.1.5foo'): null
  • s.clean(' = v 2.1.5foo', { loose: true }): '2.1.5-foo'
  • s.clean(' = v 2.1.5-foo'): null
  • s.clean(' = v 2.1.5-foo', { loose: true }): '2.1.5-foo'
  • s.clean('=v2.1.5'): '2.1.5'
  • s.clean(' =v2.1.5'): '2.1.5'
  • s.clean(' 2.1.5 '): '2.1.5'
  • s.clean('~1.0.0'): null

Constants

As a convenience, helper constants are exported to provide information about what node-semver supports:

RELEASE_TYPES

  • major
  • premajor
  • minor
  • preminor
  • patch
  • prepatch
  • prerelease
const semver = require('semver');

if (semver.RELEASE_TYPES.includes(arbitraryUserInput)) {
  console.log('This is a valid release type!');
} else {
  console.warn('This is NOT a valid release type!');
}

SEMVER_SPEC_VERSION

2.0.0

const semver = require('semver');

console.log('We are currently using the semver specification version:', semver.SEMVER_SPEC_VERSION);

Exported Modules

You may pull in just the part of this semver utility that you need if you are sensitive to packing and tree-shaking concerns. The main require('semver') export uses getter functions to lazily load the parts of the API that are used.

The following modules are available:

  • require('semver')
  • require('semver/classes')
  • require('semver/classes/comparator')
  • require('semver/classes/range')
  • require('semver/classes/semver')
  • require('semver/functions/clean')
  • require('semver/functions/cmp')
  • require('semver/functions/coerce')
  • require('semver/functions/compare')
  • require('semver/functions/compare-build')
  • require('semver/functions/compare-loose')
  • require('semver/functions/diff')
  • require('semver/functions/eq')
  • require('semver/functions/gt')
  • require('semver/functions/gte')
  • require('semver/functions/inc')
  • require('semver/functions/lt')
  • require('semver/functions/lte')
  • require('semver/functions/major')
  • require('semver/functions/minor')
  • require('semver/functions/neq')
  • require('semver/functions/parse')
  • require('semver/functions/patch')
  • require('semver/functions/prerelease')
  • require('semver/functions/rcompare')
  • require('semver/functions/rsort')
  • require('semver/functions/satisfies')
  • require('semver/functions/sort')
  • require('semver/functions/valid')
  • require('semver/ranges/gtr')
  • require('semver/ranges/intersects')
  • require('semver/ranges/ltr')
  • require('semver/ranges/max-satisfying')
  • require('semver/ranges/min-satisfying')
  • require('semver/ranges/min-version')
  • require('semver/ranges/outside')
  • require('semver/ranges/simplify')
  • require('semver/ranges/subset')
  • require('semver/ranges/to-comparators')
  • require('semver/ranges/valid')

node-semver's People

Contributors

adamreeve avatar agnoster avatar alanshaw avatar asaayers avatar bzoz avatar coreyfarrell avatar cvrebert avatar dependabot[bot] avatar github-actions[bot] avatar h4ad avatar hcharley avatar hypercubed avatar isaacs avatar joeledwards avatar jsoref avatar luk- avatar lukekarrys avatar mbtools avatar npm-cli-bot avatar othiym23 avatar pjohnmeyer avatar protyposis avatar raphaelzulliger avatar rtfpessoa avatar stephenharris avatar steveklabnik avatar stevemao avatar stevemoser avatar tjenkinson avatar wraithgar avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

node-semver's Issues

2.2.0rc changed to 2.2.0-rc

Was this an intended change?

app0:/tmp# npm install [email protected]
npm http GET https://registry.npmjs.org/underscore.string/2.2.0-rc
npm http 404 https://registry.npmjs.org/underscore.string/2.2.0-rc
npm ERR! Error: version not found: 2.2.0-rc : underscore.string/2.2.0-rc
npm ERR!     at RegClient.<anonymous> (/usr/lib/nodejs/npm/node_modules/npm-registry-client/lib/request.js:272:14)
npm ERR!     at Request.init.self.callback (/usr/lib/nodejs/npm/node_modules/request/index.js:148:22)
npm ERR!     at Request.EventEmitter.emit (events.js:99:17)
npm ERR!     at Request.onResponse (/usr/lib/nodejs/npm/node_modules/request/index.js:876:14)
npm ERR!     at Request.EventEmitter.emit (events.js:126:20)
npm ERR!     at IncomingMessage.Request.onResponse.buffer (/usr/lib/nodejs/npm/node_modules/request/index.js:827:12)
npm ERR!     at IncomingMessage.EventEmitter.emit (events.js:126:20)
npm ERR!     at IncomingMessage._emitEnd (http.js:367:10)
npm ERR!     at HTTPParser.parserOnMessageComplete [as onMessageComplete] (http.js:149:23)
npm ERR!     at CleartextStream.socketOnData (http.js:1491:20)
npm ERR! If you need help, you may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <[email protected]>

npm ERR! System Linux 3.8.2-joyent-ubuntu-12-opt
npm ERR! command "nodejs" "/usr/bin/npm" "install" "[email protected]"
npm ERR! cwd /tmp
npm ERR! node -v v0.8.25
npm ERR! npm -v 1.3.0
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /tmp/npm-debug.log
npm ERR! not ok code 0

Appears semver now automatically sticks in the - to the version, which causes a miss in the npm repo.

semver regular expression does not follow Semantic Versioning standard format

var semver = "\\s*[v=]*\\s*([0-9]+)"        // major
           + "\\.([0-9]+)"                  // minor
           + "\\.([0-9]+)"                  // patch
           + "(-[0-9]+-?)?"                 // build
           + "([a-zA-Z-+][a-zA-Z0-9-\.:]*)?" // tag

The above is the foundation of parsing in this module but it does not follow the format from the Semantic Version standard http://semver.org/

/^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/

The first capturing group is "major".

The second capturing group is "minor".

The third capturing group is "patch".

The forth capturing group is "prerelease" (not including the preceding dash delimiter between patch and prerelease).

The "build" is non-capturing because it is not to be used in any comparisons.

Check if range defines upper/lower-limit?

Is there a clean way to check if a range defines an upper or lower limit?

'<1.2.3' // only upper limit
'>1.0.0' // only lower limit
'>1.0.0 <1.2.3' // both limits
'<1.0.0 >1.2.3' // limitless?

My use-case has items without a semver string that must be considered to be the latest (or oldest). This is hard to combine when filtering with ranges.

I guess the follow-up question would be to extract the semvers for the 2 limits (if any).

A truncate() or dec() method could be very useful

I have a situation where I have an API version and my web frontend is aware of that version at application start. When doing live updates of the backend, I want to be able to decide which connections coming from frontend can be considered API stable with my backend (does this make sense?).

Example

  1. Server runs version 0.1.2
  2. User starts and thus now runs on version 0.1.2
  3. Server application gets upgraded to 0.1.3
  4. User interacts with server, but now there is a version mismatch.

In this case, I want to say 0.1.2 satisfies 0.1.x, so the APIs are compatible. Because all version information comes from variables here, I'm wondering how I should go about generating the 0.1.x range, or >=0.1.0 <0.2.0 range. To generate the latter I was thinking of this:

var version = '0.1.2';
var str = '>=' + semver.truncate(version, 'patch') + ' <' + semver.inc(version, 'minor');
// now do a satisfies check

The inc() method already exists, but truncate() does not. Do you think it would make sense to add a method like that?

Shorthand for syntax like '>= 6.1.0-0 <= 6.1.0'?

When I am working on a feature branch, I set the semver to be a pre-release of what version the code will be at when the branch is merged into master. (So if I'm starting at 6.0.0 and adding a feature, I set the semver to be 6.1.0-0 and increment the build tag as necessary.) When I point other dependents to use this branch to test it out, I want a semver that says 'use this version or any pre-releases thereof'. Would it be possible to get some shorthand for that case?

[FEATURE] decrement/truncate

Not pressing or urgent, but mostly for API symmetry, it'd be nice to have truncate/decrement functions.

  1. semver.truncate('1.2.3-foo', 'patch') == '1.2.3'
  2. semver.truncate('1.2.3', 'minor') == '1.2.0'
  3. semver.truncate('1.2.3', 'major') == '1.0.0'
  4. semver.dec('1.2.3-foo', 'patch') == '1.2.2'
  5. semver.dec('1.2.3', 'minor') == '1.1.0'
  6. semver.dec('1.2.3', 'major') == '0.0.0'

Re #46, but the use case presented there turned out to not require this functionality. It's still probably useful, though.

cc @ronkorving

Y U NO GIVE ME GTE AND LTE!

Laughing as I type this, sorry if you're offended by the title. On the serious side gte and lte functions would be really helpful. It seems like you have the machinery for it in the internal compare function.

Want to patch; just no time w/ NodeConf. Will try in May if you don't have time.

wrong return value documented for maxSatisfying

If maxSatisfying fails it returns undefined, not null.

So the README.md should corrected. There is written:

maxSatisfying(versions, range): Return the highest version in the list
that satisfies the range, or null if none of them do.

semver.gte doesn't work on 2-digit versions

semver v1.1.4

console.log(semver.gte('2.1', '3.2'),
            semver.gte('3.1', '3.2'),
            semver.gte('3.2', '3.2'),
            semver.gte('3.3', '3.2'));

I expected to see false, false, true, true. Instead I see true, true, true, true.

maxSatisfying returns minSatisfying

Using version 2.0.7. Tested a few versions back (all > 2.x) with the same result.

semver = require 'semver'

out = (input) ->
    console.log input

ranges = [
    '1.1.1-123'
    '1.1.1'
    '1.1.2'
    '2.0.0'
    '1.1.0'
]

out semver.maxSatisfying ranges, '~1.1.1'  #E: 1.1.2 A: 1.1.1-123
out semver.maxSatisfying ranges, '~1.1.x'  #E: 1.1.2 A: 1.1.0
out semver.maxSatisfying ranges, '<=2.0.0' #E: 2.0.0 A: 1.1.0
out semver.maxSatisfying ranges, '>=1.1.2' #E: 2.0.0 A: 1.1.2

AMD compatibility

For client-side use, if I were to add an AMD support to the definition wrapper any chance it would be accepted?

1.2 != 1.2.0

This will probably get closed, but I'm going to open it anyway. I know the semver spec states that a version must have a X.Y.Z, but it would be great if this library supported more sanity than the spec. When I started working with this library, I assumed the two lines below would return true. Boy was I wrong.

semver.gt('1.2.1', '1.2')    <--- false
semver.gt('1.2.1', '1.2.0')  <--- true

Add support for semver 2.0.0-rc.1’s build level

The new 2.0.0-rc1 version of Semantic Versioning ( http://semver.org/ ) has a "build" part of the version number.

A build version MAY be denoted by appending a plus sign and a series of dot separated identifiers immediately following the patch version or pre-release version. Identifiers MUST be comprised of only ASCII alphanumerics and dash [0-9A-Za-z-]. Build versions satisfy and have a higher precedence than the associated normal version. Examples: 1.0.0+build.1, 1.3.7+build.11.e0f985a.

semver currently uses a minus (-) sign to delimit the build version. That's not to spec, but it would be nice if the semver package recognized the + in addition to the - for build numbers.

I currently have 2.0.1 and a 2.0.1+build.2 tags in my bower component’s repo and the 2.0.1+build.2 tag is not being recognized as 1.) valid or 2.) higher precedence then 2.0.1.

1.0.0-rc1 >= 1.0

Hey,

Is the following behavior intentional?

> SemVer.satisfies("1.0.0-rc1", ">= 1.0.0")
false
> SemVer.satisfies("1.0.0-rc1", ">= 1.0")
true

Happens with SemVer v2.2.1.

Easily increment a given semver string

It would be nice if you could increment a given semver string. e.g.

semver.increment('0.0.0', 'build') // 0.0.0-1

semver.increment('0.0.1-1', 'build') // 0.0.1-2

semver.increment('0.0.1-1', 'patch') // 0.0.2

semver.increment('0.0.1', 'patch') // 0.0.2

etc. etc.

^ should not allow prerelease versions

Expected:

satisfies('1.2.3', '^1.2.2') // true
satisfies('1.2.3-a', '^1.2.2') // false
satisfies('1.2.3-b', '^1.2.3-a') // true
satisfies('1.2.4-a', '^1.2.3-a') // false

^x.y.z-pre should match >= prereleases on x.y.z, but not on any other version.
^x.y.z should not match any prerelease versions, period.

~ behaviour

pretty convinced the current behaviour is broken. I usually use it with the intention of expecting at least a certain version, but anything else compatible is ok. Ex: ~1.0.2 must be at least 1.0.2 but anything up to 2.0.0 is fine. Having a specifier for indicating that you're not ok with new features is a little wonky, so IMHO this anything within the major level would make the most sense. AFAIK the only other way to specify that right now is with the more verbose >= / <= ops

Add a Big-Fucking-Deal 4th digit

So... yes, I'm just venting.

Semantic versioning is great. It allows systems to find the right versions and express dependencies in a consistent and safe way.

But.

It doesn't work with stupid humans. When you do a 1.0.0 or 2.0.0 release, people assume it's a big-fucking-deal even when it's not. I need to change hapi from 1.0.0 to 2.0.0 because we messed up a dependency and it requires a breaking change. But there are no new features, nothing to get excited about. No party.

If only there was one extra digit which had no semantic meaning other than "newer and a big-fucking-deal". So 1.1.0.0 to 1.2.0.0 is breaking changes but nothing exciting while 1.1.0.0 to 2.1.0.0 is FUCKYEAHWEROCKWITHNEWSHINYSHITANDTSHIRTS.

Thanks for listening. You can close this now.

.inc() "patch" broken when version is prerelease

With [email protected] I am seeing the following understandable, yet semantically incorrect behavior, based on this definition of the inc method in the README:

Return the version incremented by the release type (major, minor, patch, or prerelease), or null if it's not valid.

// 0.1.2 incremented via "prerelease" really decremements to
// 0.1.2-0, instead of incrementing to 0.1.3-0.
semver.inc('0.1.2', 'prerelease').toString() // '0.1.2-0'

// Specifically:
semver.gt('0.1.2-0', '0.1.2') // false

While not "semantically correct," the aforementioned behavior is understandable, because the library has no way of knowing if the user intends to increment from 0.1.2 to 0.1.3-0 or 0.2.0-0 or 1.0.0-0. The current solution is to do this:

// This feels awkward. Is there a better way? Should it at
// least be documented?
semver.parse('0.1.2').inc('patch').inc('prerelease').toString() // '0.1.3-0'
semver.parse('0.1.2').inc('minor').inc('prerelease').toString() // '0.2.0-0'
semver.parse('0.1.2').inc('major').inc('prerelease').toString() // '1.0.0-0'

This behavior, however, is just incorrect:

// 0.1.3-0 incremented via "patch" really double-increments
// past 0.1.3 to 0.1.4. This should return '0.1.3'.
semver.inc('0.1.3-0', 'patch').toString() // '0.1.4'

// The "minor" and "major" release types appear to work fine,
// however.
semver.inc('0.1.3-0', 'minor').toString() // '0.2.0'
semver.inc('0.1.3-0', 'major').toString() // '1.0.0'

Ranges can not be joined with either a space

In the documentation is written:
Ranges can be joined with either a space (which implies "and") [...]

But it does not work with space. It always return false.

Here is an example:

> semver.satisfies('1.2.3', "~1.2.1")
true
> semver.satisfies('1.2.3', "1.2.3")
true
> semver.satisfies('1.2.3', "~1.2.1 1.2.3")
false
> semver.satisfies('1.2.3', "1.2.3 1.2.3")
false

all this cases should return true.

I tested is with [email protected] and [email protected]

version with tag satisfies abbreviated range

semver -v 1.0.0-pre2 -r ">1.0.0"
semver -v 1.0.0-pre2 -r ">1.0"

The second one passes, the first does not.
I can see why it might, but I wonder if it's intentional or an oversight?

Shorthand syntax for ranges like ">=1.2 <2.0"?

I'm guessing this has already been brought up in the past, but I couldn't find this discussion on the web. I'm sorry if this is a recurring question.

In my understanding of semver v2, it should be safe (and desirable, I think) to install packages of greater Minor versions than the minimal one with which the package was originally implemented, because Minor bumps should be backwards-compatible.

Desirability comes from the idea that if I implement something that depends on module [email protected] at one point, and abc evolves a lot and reaches version 1.9.9, version 1.9.9 is likely to have improvements over 1.2.3 funcionality that were not introduced as 1.2 bugfixes.

It takes a very diligent maintainer to fix a bug of 1.2 functionality on version 1.9.x and create a 1.2 bugfix for it. In fact, he would need to create one bugfix for each Minor version in the 1.2~1.9 range, or at least for each tag in that range. Normally, they just tell you to update the package if you encounter problems, which is fine, but currently that's only automatically done by npm in bugfix increments, since people are instructed to use 1.2.x notation.

Even though Minor bumps mostly introduce new functionality, they may also introduce bugfixes that I would like npm to install for me without requiring me to update my package.json.

Thoughts?

Pre-build semver.browser.js for Bower/RequireJS users

I'm trying to use node-semver in the browser using Bower and RequireJS. I've installed it using 'bower install isaacs/node-semver' and that works fine, but because I then want to use it in the browser (using RequireJS which provides an AMD environment) I need semver.browser.js.

Right now, I don't have any kind of "build process", and I'd rather not add one unless I have to ;-)

Other libraries handle this by committing their built artifacts (something which I'd abhor if they were binaries - e.g. JARs). For example, https://github.com/twbs/bootstrap/tree/master/dist. So when you install bootstrap using Bower, you simply serve the JS/CSS/etc. from .../bower_components/bootstrap/dist.

Would it be possible for you to commit semver.browser.js as part of your build/release process?

validRange behave differently compared with other functions

Calling valid(null) returns false
Calling every other functions with null values works correctly.
Calling validRange(null) throws an exception:

TypeError: Cannot call method 'trim' of null
    at replaceStars (/Users/satazor/Work/twitter/bower/node_modules/semver/semver.js:119:16)
    at Object.validRange (/Users/satazor/Work/twitter/bower/node_modules/semver/semver.js:188:11)

Also calling validRange('') returns an empty string, shouldn't it return null? It's not a valid range..

Split tests in a different file

When using browserify on a module using semver, browserify tries to include tap and fails.

This issue aside, it would be slightly cleaner to split the tests in a tests.js file and call this one with tap, right ?

Thanks!

license clarification

Please clarify that you intent on making this code available under the MIT Open Source license. I assume that you are, but I'd rather not assume, and see the license explicitly . Thanks! Gil

parseRange returns null for all strings

var semver = require('semver')
semver.parseRange("1.0.0")
semver.parseRange(">= 1.0.0")
semver.parseRange(">= v1.0.0")
semver.parseRange(">= 1.0.0 < 2.0.0")
semver.parseRange(">= v1.0.0 < v2.0.0")

Load 'or' dependencies based on order

(Originally (wrongfully) posted on the Bower issue tracker)

I have a library that works with jQuery 2.x or jQuery 1.x. However, it's advertised as being IE8+ compatible. Because of this I want it to default to installing the jQuery 1.x dependency when you run bower install. For users who already have jquery v2 installed, though, I don't want them to get asked to resolve their dependencies, as there isn't any issue at all with them using v2.

I figured this situation is best handled by the || operator. However, because using or always picks the latest version this doesn't really work all that optimally. This is because users who type bower install will always get jquery v2.

My thought is: what if the order of or mattered? What if the first version specified is what is installed, if neither are. This would let me specify:

"jquery": "~1.11.0 || ~2.1.0"

and have it pull in 1.11 if there is no jQuery currently installed. For users who already have jQuery v2 installed, they (rightfully) wouldn't get asked for resolutions.

With this change, you could change the precedence of the install by swapping it to be:

"jquery": "~2.1.0 || ~1.11.0"

What do y'all think?

Loose range parser incorrectly recognizes some URLs as valid version ranges

Under specific circumstances, parseRange will successfully parse a URL string as a valid SemVer range, if loose parsing is enabled.

This is, for instance, problematic for npm (or more correctly, the read-installed library upon which npm depends), as it relies on node-semver failing to parse a string in order to determine if a given string is a URL. npm dependency version strings which node-semver cannot parse (e.g. Git URLs) are assumed to be satisfied by any installed version of the specified package, whereas those which it can parse are only satisfied if the installed version of the package is covered by the parsed range.

One specific condition under which this bug can be reproduced (though I doubt that it is limited to only this case) occurs when the Git URL contains a username and password (i.e. for HTTP basic authentication) and the password happens to end in a string of digits beginning with a zero.

Here is a minimal example:

var semver = require('semver');

new semver.Range('git+https://user:[email protected]/foo/bar.git', true);
// Fails to parse, as expected

new semver.Range('git+https://user:[email protected]/foo/bar.git', true);
// Fails to parse, as expected

new semver.Range('git+https://user:[email protected]/foo/bar.git', true);
// Successfully parses as: <SemVer Range ">=123.0.0-0 <124.0.0-0">

If the final URL in the above example is used as a dependency version string in an npm package.json file, npm will incorrectly consider the dependency unsatisfied unless the installed version number of the package in question coincidentally happens to fall between 123.0 and 124.0.

semver.clean() returns null on some version strings

Hello, i am not sure if this is a bug.

I noticed that semver.clean('5.4.0~oneric+3') returns null, I can reproduce this with any version string containing ~ or +.

My workaround currently is to replace ~ and + with - before passing it.

Could the function be corrected to either strip or ignore these characters?

Loading node-semver via browserify throws errors in closure compiler verbose mode

Firstly I recognise this is a slightly obscure use case and probably doesn't affect many (any?) other people at all. Also I have a 'good enough' workaround (instead of require('semver') simply use require('semver/semver')).

What we're doing:

  • Loading node-semver via browserify.
  • Running our browserified javascript through closure compiler with warning_level VERBOSE.

The errors we see:

semver.browser.js:4: ERROR - variable module is undeclared
if (typeof module === 'object' && module.exports === exports)
           ^

semver.browser.js:912: ERROR - variable define is undeclared
if (typeof define === 'function' && define.amd)
           ^

semver.browser.js:916: ERROR - variable exports is undeclared
  typeof exports === 'object' ? exports :
         ^

semver.browser.js:918: ERROR - variable semver is undeclared
  semver = {}
  ^

I'm not sure what the best fix for this would be but since it's possible to workaround it by just pointing browserify at the raw semver file (rather the semver.browser.js, which has the head.js and foot.js files sandwiching it) I was wondering why the browser property (which - and I may be wrong here - is only used by browserify?) wasn't just pointing to the semver.js file.

Alternatively the code to compile the library 'for browsers' could be switched for browserify with the standalone option, which I know to be 'closure compiler safe' - but that will increase the size of the library unnecessarily...

What do you think?

Thanks!

Matt

special-case for 0.x in ^ is very counter-inutitive and rage-inducing

I just started using ^ but am now completely stripping out ^ everywhere because the special case with 0.x makes it extremely counter-intuitive behavior, especially where swapping ~ for ^ is concerned.

I just went through a package.json recently and was pulling my hair out trying to figure out why "duplexer2": "^0.0.1" wasn't installing 0.0.2 until I found #41.

We currently have no way of tersely describing "up to the next major release" without special cases for 0.x. As it stands I'm not going to be using ^ anymore anywhere.

No history.md?

I wrote a site with semver 1.1.4. Now I'm trying to update it, and I find that the current version is 2.2.1, but there is no history.md file so I don't know what's changed or how I'll have to modify my code if I update. I don't really want to have to read every commit between 1.1.4 and now. Is there no document somewhere that gives a simple straightforward explanation like "change this function name" or "add this parameter to this function"?

meaning of ~ is inconsistent

when specifying a patch range, ~ means greater than of equal to the next least significant value, but before but don't go into the next range.

i.e. ~1.2.3 means, I want patches to this module, but not if it means taking a new feature.
contrast that with 1.2.3 which means only use this exact version.

indeed,

assert.deepEqual(semver.toComparators('~1.2.3'), semver.toComparators('1.2.3')) throws, as it should.

however,

you can also say '~1.2' which, if I was extending the meaning of ~ from before id expect it to give me 1.2.3, 1.3.4, but not 2.0.0.

however,

deepEqual(toComparators('~2.16'), toComparators('2.16')) does not throw!

turns out, ~ on means anything when you have a full semver and nothing when you have only one or two values.

This behaviour is documented
(although, it could be documented more clearly by saying that in ~x.y '~' is ignored.)

Would you take a patch to make ~ behave consistently?

"No compatible version found" for node 0.8 build on Travis

The dependencies for one of my npm modules' package.json looks like this:

  "dependencies": {
    "chalk": "~0.4.0",
    "nopt": "~2.2.0",
    "node.extend": "~1.0.9",
    "update-notifier": "^0.1.7"
  }

The update-notifier entry here with the 'caret' (^) was added automatically by npm, when npm install update-notifier --save was run.

And as seen from this Travis build, everything works fine for v0.10.x, but for v0.8.x npm is throwing the 'No compatible version found error'. Here is the error message from the build log:

npm ERR! Error: No compatible version found: update-notifier@'^0.1.7'
npm ERR! Valid install targets:
npm ERR! ["0.1.0","0.1.1","0.1.2","0.1.3","0.1.4","0.1.5","0.1.6","0.1.7"]
npm ERR!     at installTargetsError (/home/travis/.nvm/v0.8.26/lib/node_modules/npm/lib/cache.js:719:10)
npm ERR!     at /home/travis/.nvm/v0.8.26/lib/node_modules/npm/lib/cache.js:641:10
npm ERR!     at saved (/home/travis/.nvm/v0.8.26/lib/node_modules/npm/node_modules/npm-registry-client/lib/get.js:138:7)
npm ERR!     at Object.oncomplete (fs.js:297:15)
npm ERR! If you need help, you may report this log at:
npm ERR!     <http://github.com/isaacs/npm/issues>
npm ERR! or email it to:
npm ERR!     <[email protected]>

Got this error on the first build build 85 after this dependency was added to the package.

When the dependency in package.json was manually changed to "update-notifier": "~0.1.7" (please note the tilde), the next build (build 86) ran fine.

When the dependency was changed back to what npm injects automatically ("update-notifier": "^0.1.7"), the latest build (build 87) has failed again - only for the v0.8.x.

Googling 'npm dependency caret' brought me to this package and I thought it is better to raise this issue here than at npm.

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.