Socket
Socket
Sign inDemoInstall

find-versions

Package Overview
Dependencies
53
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    find-versions

Find semver versions in a string: `unicorn 1.0.0` → `1.0.0`


Version published
Weekly downloads
3.3M
decreased by-20.27%
Maintainers
1
Install size
614 kB
Created
Weekly downloads
 

Package description

What is find-versions?

The find-versions npm package is designed to extract version numbers from strings. It is useful for parsing and identifying version numbers in various formats from text, allowing developers to easily extract and manipulate version information programmatically.

What are find-versions's main functionalities?

Extracting version numbers from strings

This feature allows you to extract version numbers from a given string. The function returns an array of version numbers found within the string. It's particularly useful for parsing logs, documents, or any text content that may contain version numbers.

"const findVersions = require('find-versions');\nconsole.log(findVersions('unicorn v1.2.3')); //=> ['1.2.3']"

Extracting version numbers with options

This feature extends the basic functionality by allowing you to specify options for the extraction process. For example, setting the 'loose' option to true enables the function to match version numbers that don't strictly follow semantic versioning.

"const findVersions = require('find-versions');\nconsole.log(findVersions('cat 1.2.3 and dog 4.5.6', {loose: true})); //=> ['1.2.3', '4.5.6']"

Other packages similar to find-versions

Readme

Source

find-versions Build Status

Find semver versions in a string: unicorn 1.0.01.0.0

Install

$ npm install --save find-versions

Usage

var findVersions = require('find-versions');

findVersions('unicorn 1.0.0 rainbow v2.3.4+build.1');
//=> ['1.0.0', '2.3.4+build.1']

findVersions('cp (GNU coreutils) 8.22', {loose: true});
//=> ['8.22.0']

API

findVersions(input, options)

input

Required
Type: string

options.loose

Type: boolean
Default: false

Also match non-semver versions like 1.88.
They're coerced into semver compliant versions.

CLI

$ npm install --global find-versions
$ find-versions --help

  Usage
    $ find-versions <string> [--first] [--loose]
    $ echo <string> | find-versions

  Example
    $ find-versions 'unicorns v1.2.3'
    1.2.3

    $ curl --version | find-versions --first
    7.30.0

  Options
    --first  Return the first match
    --loose  Match non-semver versions like 1.88

License

MIT © Sindre Sorhus

Keywords

FAQs

Last updated on 18 Nov 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc