0.01
No commit activity in last 3 years
No release in over 3 years
A benchmarking tool which measures how long it takes to execute "Hello, world!" programs in various languages.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 0.65.0

Runtime

~> 2.0
~> 2.0.0
~> 1.0.0
~> 0.1.8
~> 12.0
~> 0.10.0
~> 0.4.0
~> 1.8
~> 0.0.2
 Project Readme

startup-time

Build Status Gem Version

  • NAME
  • INSTALLATION
  • SYNOPSIS
    • Sample Output
  • DESCRIPTION
    • Why?
  • OPTIONS
  • COMPATIBILITY
  • LINKS
    • Response Times
    • Hello World
  • SEE ALSO
  • AUTHOR
  • VERSION
  • COPYRIGHT AND LICENSE

NAME

startup-time - a command-line benchmarking tool to measure the startup times of programs in various languages

INSTALLATION

$ gem install startup-time

SYNOPSIS

# 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 30 seconds (default: 10)
$ startup-time --time 30

# run each program 10 times
$ startup-time --count 10

Sample Output

Test                      Time (ms)
C (gcc)                        0.38
Rust                           0.64
Lua (LuaJIT)                   0.68
Go                             0.88
JavaScript (QuickJS)           0.91
Lua                            0.97
Haskell (GHC)                  1.12
C++ (g++)                      1.26
Crystal                        1.68
Perl                           1.69
Bash                           2.69
Python 2                       9.32
JavaScript (Deno)             14.53
Python 3                      22.46
JavaScript (SpiderMonkey)     24.69
JavaScript (Node.js)          41.70
Ruby                          55.24

DESCRIPTION

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 results after each run. Apart from ruby, the tool doesn't require any of the tested languages to be installed: if a compiler/interpreter is not available, the test is skipped.

Why?

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.

OPTIONS

USAGE:

    startup-time [options]

OPTIONS:

    -c, --count, --rounds INTEGER    The number of times to run each program (minimum: 2)
        --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

COMPATIBILITY

startup-time is tested and supported on all versions of Ruby supported by the ruby-core team, i.e., currently, Ruby 2.5 and above.

LINKS

Response Times

Hello World

SEE ALSO

AUTHOR

chocolateboy

VERSION

1.3.0

COPYRIGHT AND LICENSE

Copyright © 2015-2020 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.