LinuxCommandLibrary

raco

Racket command-line tools.

TLDR

Install a package, automatically installing dependencies

$ raco pkg install --auto [package_source]
copy


Install the current directory as a package
$ raco pkg install
copy


Build (or rebuild) bytecode, documentation, executables, and metadata indexes for collections
$ raco setup [collection1 collection2 ...]
copy


Run tests in files
$ raco test [path/to/tests1.rkt path/to/tests2.rkt ...]
copy


Search local documentation
$ raco docs [search_terms ...]
copy


Display help
$ raco help
copy

SYNOPSIS

raco [ option ... ] [ argument ... ]

DESCRIPTION

raco performs various tasks related to the Racket language, such as finding documentation, compiling Racket source to bytecode, packaging executables, and packaging installable archives.

Run

raco help

for a list of subcommands.

MORE INFORMATION

For further information, run

raco docs

to open installed documentation in your web browser.

Alternately, consult the on-line documentation and other information available at

http://racket-lang.org/

SEE ALSO

racket(1), drracket(1)

AUTHOR

raco was implemented by PLT.

Copied to clipboard