
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
version-sort
Advanced tools
Sort an array of versions.
This module sort an array of versions. Here some examples of valid versions:
1.1.0
1.1.4
1.1.4.469816
2.4
2.4.2
2.4.20
2.4.20alpha
2.4.20beta
2.4.20rc1
2.4.20rc2
To use it just call the module as a function.
var sort = require('version-sort');
data = [ '2.4.20', '2.4.20rc1', '1.1', '2.4.20beta1' ];
sort(data); // '1.1', '2.4.20beta1', '2.4.20rc1', '2.4.20'
var results = sort(data, options);
ignore_stages: (default: false) Only return stables versions and ignore
staged versions.
Example:
var results = sort([ '1.1', '1.1alpha' ], { ignore_stages: true });
// [ '1.1' ]
nested: (default: false) Use this option to sort object by a field.
Example:
var softwares = [ { version: '1.1' }, { version: '1.1alpha' } ];
var results = sort(softwares, { nested: 'version' });
// [ { version: '1.1alpha' }, { version: '1.1'} ]
npm install --save version-sort
FAQs
Sort an array of versions.
We found that version-sort demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.