at-least-node

WebJar for at-least-node

License

License

ISC
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

at-least-node
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

at-least-node
WebJar for at-least-node
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/RyanZim/at-least-node

Download at-least-node

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/at-least-node/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>at-least-node</artifactId>
    <version>1.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/at-least-node/
implementation 'org.webjars.npm:at-least-node:1.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/at-least-node/
implementation ("org.webjars.npm:at-least-node:1.0.0")
'org.webjars.npm:at-least-node:jar:1.0.0'
<dependency org="org.webjars.npm" name="at-least-node" rev="1.0.0">
  <artifact name="at-least-node" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='at-least-node', version='1.0.0')
)
libraryDependencies += "org.webjars.npm" % "at-least-node" % "1.0.0"
[org.webjars.npm/at-least-node "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

at-least-node

npm node NPM

Sometimes you need to check if you're on at least a given Node.js version, but you don't want to pull in the whole semver kitchen sink. That's what at-least-node is for.

Package Size
at-least-node 2.6 kB
semver 75.5 kB
const atLeastNode = require('at-least-node')
atLeastNode('10.12.0')
// -> true on Node 10.12.0+, false on anything below that

When passing in a version string:

  • You cannot include a leading v (i.e. v10.12.0)
  • You cannot omit sections (i.e. 10.12)
  • You cannot use pre-releases (i.e. 1.0.0-beta)
  • There is no input validation, if you make a mistake, the resulting behavior is indeterminate

Versions

Version
1.0.0