
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
startup-time - a command-line benchmarking tool which measures the startup times of programs in various languages
$ gem install startup-time
# run all available tests
$ startup-time
# only run the "fast" tests
$ startup-time --only fast
# run all but the "slow" tests
$ startup-time --omit slow
# only run the JVM tests (e.g. Java, Scala etc.)
$ startup-time --only jvm
# only run tests which finish quickly
$ startup-time --only fast --omit slow-compile
# run the test suite for at least 10 seconds (default: 5)
$ startup-time --time 10
# run each program 10 times
$ startup-time --count 10
Test Time (ms)
C (gcc) 0.33
Nim 0.44
Kotlin Native 0.61
LuaJIT 0.64
Go 0.66
Rust 0.67
JavaScript (QuickJS) 0.83
D (DMD) 0.88
Lua 0.94
Java Native (GraalVM) 0.99
D (GDC) 1.10
Haskell (GHC) 1.14
Wren 1.14
C++ (g++) 1.19
Crystal 1.55
Perl 1.66
Bash 2.63
JavaScript (GraalVM) 3.88
JavaScript (Deno) 11.15
Python 3 22.09
Ruby (TruffleRuby) 33.59
JavaScript (Node.js) 35.20
Python 2 43.43
Java 54.59
Ruby 68.68
Kotlin 103.02
Scala 801.21
A command-line tool which measures how long it takes to execute "Hello, world!" programs written in various languages. It records the fastest time for each program and prints a sorted table of the times after each run. Apart from the prerequisites listed below, the tool doesn't require any of the tested languages to be installed: if a compiler/interpreter is not available, the test is skipped.
To determine which languages are practical (or impractical) to use for command-line interface (CLI) tools. Anything under 100 milliseconds is perceived as instantaneous. Anything over that is perceptibly delayed, which can impair interactivity and productivity on the command line, and can mean the difference between staying in the zone and losing your train of thought.
USAGE:
startup-time [options]
OPTIONS:
-c, --count, --rounds INTEGER The number of times to run each program
--clean Remove the build directory and exit
(targets will be recompiled on the next run)
-d, --dir PATH Specify the build directory
(default: "${XDG_CACHE_HOME:-~/.cache}/startup-time")
-h, --help Show this help message and exit
-H, --help-only, --help-omit Show the IDs and groups that can be passed to --only and --omit
-j, --json Output the results in JSON format (implies --quiet)
-o, --only LIST Only run the specified tests (comma-separated list of IDs/groups)
-O, --omit LIST Don't run the specified tests (comma-separated list of IDs/groups)
-q, --quiet Suppress all inessential output
-t, --time INTEGER The minimum number of seconds to run the test suite for
(minimum: 2, default: 10)
-v, --verbose Enable verbose logging
-V, --version Display the version and exit
1.3.0
Copyright © 2015-2019 by chocolateboy
This benchmark game is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0.
FAQs
Unknown package
We found that startup-time 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.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.