Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

5,106

Downloads of v 12.0.0:

99

Last Update:

29 Sep 2020

Package Maintainer(s):

Software Author(s):

  • Erin Power

Tags:

clock sloc cloc code rusty

Tokei

This is not the latest version of Tokei available.

  • 1
  • 2
  • 3

12.0.0 | Updated: 29 Sep 2020

Downloads:

5,106

Downloads of v 12.0.0:

99

Maintainer(s):

Software Author(s):

  • Erin Power

Tokei 12.0.0

This is not the latest version of Tokei available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Dependency requires reboot

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Tokei, run the following command from the command line or from PowerShell:

>

To upgrade Tokei, run the following command from the command line or from PowerShell:

>

To uninstall Tokei, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade tokei -y --source="'INTERNAL REPO URL'" --version="'12.0.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade tokei -y --source="'INTERNAL REPO URL'" --version="'12.0.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install tokei
  win_chocolatey:
    name: tokei
    version: '12.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'tokei' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '12.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller tokei
{
    Name     = "tokei"
    Version  = "12.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'tokei':
  ensure   => '12.0.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 29 Sep 2020.

Description

Mean Bean CI
crates.io
Help Wanted
Lines Of Code
Documentation

Tokei is a program that displays statistics about your code. Tokei will show the number of files, total lines within those files and code, comments, and blanks grouped by language.

Example

===============================================================================
 Language            Files        Lines         Code     Comments       Blanks
===============================================================================
 BASH                    4           49           30           10            9
 JSON                    1         1332         1332            0            0
 Shell                   1           49           38            1           10
 TOML                    2           77           64            4            9
-------------------------------------------------------------------------------
 Markdown                5         1355            0         1074          281
 |- JSON                 1           41           41            0            0
 |- Rust                 2           53           42            6            5
 |- Shell                1           22           18            0            4
 (Total)                           1471          101         1080          290
-------------------------------------------------------------------------------
 Rust                   19         3416         2840          116          460
 |- Markdown            12          351            5          295           51
 (Total)                           3767         2845          411          511
===============================================================================
 Total                  32         6745         4410         1506          829
===============================================================================

Features

  • Tokei is very fast, and is able to count millions of lines of code in seconds.
    Check out our latest release
    to see how Tokei's speed compares to others.

  • Tokei is accurate, Tokei correctly handles multi line comments,
    nested comments, and not counting comments that are in strings. Providing an
    accurate code statistics.

  • Tokei has huge range of languages, supporting over 150 languages, and
    their various extensions.

  • Tokei can output in multiple formats(CBOR, JSON, TOML, YAML)
    allowing Tokei's output to be easily stored, and reused. These can also be
    reused in tokei combining a previous run's statistics with another set.

  • Tokei is available on Mac, Linux, and Windows. See installation
    instructions
    for how to get Tokei on your platform.

  • Tokei is also a library allowing you to easily integrate it with other
    projects.


legal\LICENSE.txt
MIT License (MIT)

Copyright (c) 2016 Erin Power

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

-----------------------------------------------------------------------------

Copyright 2016 Erin Power

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Package can be verified like this:

1. Go to https://github.com/XAMPPRocky/tokei, enter to releases and download from there.

   i686:   https://github.com/XAMPPRocky/tokei/releases/download/v12.0.0/tokei-i686-pc-windows-msvc.exe
   x86_64: https://github.com/XAMPPRocky/tokei/releases/download/v12.0.0/tokei-x86_64-pc-windows-msvc.exe

   to download the executable(s). You may wish to rename one of the files.

2. You can use one of the following methods to obtain the SHA512 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum:   3cdcbc86d33c0005a775aa4add3af29d1e4d93519bd025dafcd7f796454a0a8f8365ee9a6018fa11f5c54af9665db83d50c417ac90bdf83b90fef69e58076df1
   checksum64: cd71d5b91276623bb25c37df28fa0a5407e513101f80ec562c0271448a4aca66c2210e5d84d5f0813408157692768bc9b7dc5ff904df3e246759ee184f8c4488

File 'LICENSE.txt' obtained from:
   https://github.com/XAMPPRocky/tokei/blob/v12.0.0/LICENCE-MIT
and
	https://github.com/XAMPPRocky/tokei/blob/v12.0.0/LICENCE-APACHE
tools\chocolateyinstall.ps1
$ToolsPath = Split-Path -Parent $MyInvocation.MyCommand.Definition;

Remove-Item $(Get-Item $(Join-Path $ToolsPath 'tokei.exe')) -EA 0;

# Only One Can Survive
if (Get-OSArchitectureWidth -Compare 32)
{
	Remove-Item $(Get-Item $(Join-Path $ToolsPath 'tokei-x86_64-pc-windows-msvc.exe'));
	Rename-Item -Path $(Get-Item $(Join-Path $ToolsPath 'tokei-i686-pc-windows-msvc.exe')) -NewName "tokei.exe";
}
elseif (Get-OSArchitectureWidth -Compare 64)
{
	Remove-Item $(Get-Item $(Join-Path $ToolsPath 'tokei-i686-pc-windows-msvc.exe'));
	Rename-Item -Path $(Get-Item $(Join-Path $ToolsPath 'tokei-x86_64-pc-windows-msvc.exe')) -NewName "tokei.exe";
};
tools\tokei-i686-pc-windows-msvc.exe
md5: EE7B2F203953E8FF326F70A2CEDDF3E0 | sha1: EBF0E3B360C5CABF49BE51477A80D308BD5DF742 | sha256: F81A1D300070BA97623DB49AAB4E4983D35CF530E6B4483479942D65D004C5D5 | sha512: 3CDCBC86D33C0005A775AA4ADD3AF29D1E4D93519BD025DAFCD7F796454A0A8F8365EE9A6018FA11F5C54AF9665DB83D50C417AC90BDF83B90FEF69E58076DF1
tools\tokei-x86_64-pc-windows-msvc.exe
md5: 1987B88577D0FB53DF2D008AD824735E | sha1: 5AD3139C4B49A6C2EAF5CB1D3C79C4D85C9DC720 | sha256: 4EA60F0A03AF2A6A68D08EA5543BDD1AB1277115BEC9BF3E513D6B7BF993EA4B | sha512: CD71D5B91276623BB25C37DF28FA0A5407E513101F80EC562C0271448A4ACA66C2210E5D84D5F0813408157692768BC9B7DC5FF904DF3E246759EE184F8C4488

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Tokei 12.1.1 99 Saturday, January 2, 2021 Approved
Tokei 12.0.4.1 235 Tuesday, September 29, 2020 Approved
Tokei 12.0.4 94 Tuesday, September 29, 2020 Approved
Tokei 12.0.3 88 Tuesday, September 29, 2020 Approved
Tokei 12.0.2 89 Tuesday, September 29, 2020 Approved
Tokei 12.0.1 98 Tuesday, September 29, 2020 Approved
Tokei 12.0.0 99 Tuesday, September 29, 2020 Approved
Tokei 11.2.1 93 Tuesday, September 29, 2020 Approved
Tokei 11.2.0 117 Tuesday, September 29, 2020 Approved
Tokei 11.1.1 103 Tuesday, September 29, 2020 Approved
Tokei 11.1.0 87 Tuesday, September 29, 2020 Approved
Tokei 11.0.0 103 Tuesday, September 29, 2020 Approved
Tokei 10.1.2 93 Tuesday, September 29, 2020 Approved
tokei 9.1.0 116 Monday, September 28, 2020 Approved
tokei 9.0.0 104 Monday, September 28, 2020 Approved
tokei 8.0.1 86 Monday, September 28, 2020 Approved
tokei 7.0.3 85 Monday, September 28, 2020 Approved
tokei 7.0.2 104 Monday, September 28, 2020 Approved
tokei 6.1.2 98 Monday, September 28, 2020 Approved
tokei 6.1.1 85 Monday, September 28, 2020 Approved
tokei 6.1.0 103 Monday, September 28, 2020 Approved
tokei 6.0.1 86 Monday, September 28, 2020 Approved
tokei 6.0.0 86 Monday, September 28, 2020 Approved
tokei 5.0.6 85 Monday, September 28, 2020 Approved
tokei 5.0.5 112 Monday, September 28, 2020 Approved
tokei 5.0.4 90 Monday, September 28, 2020 Approved
tokei 4.5.4.1 91 Monday, September 28, 2020 Approved
tokei 4.5.4 113 Monday, September 28, 2020 Approved
tokei 4.5.3 109 Monday, September 28, 2020 Approved
tokei 4.2.0 94 Monday, September 28, 2020 Approved
tokei 3.0.0 93 Monday, September 28, 2020 Approved
tokei 2.1.0 100 Monday, September 28, 2020 Approved
tokei 2.0.0 94 Saturday, September 26, 2020 Approved
tokei 1.3.1 99 Saturday, September 26, 2020 Approved
tokei 1.2.0 76 Saturday, September 26, 2020 Approved
tokei 1.1.0 99 Saturday, September 26, 2020 Approved
rusty-cloc 1.0.0 98 Wednesday, September 23, 2020 Approved

Introduction

Tokei is a fast and accurate code analysis CLI tool and library, allowing you to easily and quickly see how many blank lines, comments, and lines of code are in your codebase. All releases and work on Tokei and tokei.rs (the free companion badge service) are funded by the community through GitHub Sponsors.

You can always download the latest version of tokei through GitHub Releases or Cargo. Tokei is also available through other package managers, though they may not always contain the latest release.


cargo install tokei

What's New?

Tokei 12 comes with some of the biggest user facing changes since 1.0, now in the latest version tokei will now analyse and count multiple languages embedded in your source code as well as adding support for Jupyter Notebooks. Now for the first time is able to handle and display different languages contained in a single source file. This currently available for a limited set of languages, with plans to add more support for more in the future. The currently supported languages are;

HTML + Siblings (Vue, Svelte, Etc...)

Tokei will now analyse and report the source code contained in <script>, <style>, and <template> tags in HTML and other similar languages. Tokei will read the value of thetype attribute from the <script> tag and detects the appropriate language based on its MIME type or JavaScript if not present. Tokei will do the same for <style> and <template> except reading the lang attribute instead of type and defaulting to CSS and HTML each respectively.

Jupyter Notebooks

Tokei will now read Jupyter Notebook files (.ipynb) and will read the source code and markdown from Jupyter's JSON and output the analysed result.

Markdown

Tokei will now detect any code blocks marked with specified source language and count each as their respective languages or as Markdown if not present or not found. Now you can easily see how many code examples are included in your documentation.

Rust

Tokei will now detect blocks of rustdoc documentation (e.g. //////!) and parse them as markdown.

Verbatim Strings

Tokei is now also capable of handling "verbatim" strings, which are strings that do not accept escape sequences like \. Thanks to @NickHackman for providing the implementation! This is initially supported for C++, C#, F#, and Rust.

New Look

To be able to show these new features, tokei's output has been changed to look like below. For brevity the CLI only displays one level deep in each language, however the library's parser is fully recursive and you can get access to the complete report using the library or by outputting the JSON format.


===============================================================================

 Language            Files        Lines         Code     Comments       Blanks

===============================================================================

 BASH                    4           49           30           10            9

 JSON                    1         1332         1332            0            0

 Shell                   1           49           38            1           10

 TOML                    2           77           64            4            9

-------------------------------------------------------------------------------

 Markdown                5         1230            0          965          265

 |- JSON                 1           41           41            0            0

 |- Rust                 2           53           42            6            5

 |- Shell                1           22           18            0            4

 (Total)                           1346          101          971          274

-------------------------------------------------------------------------------

 Rust                   19         3349         2782          116          451

 |- Markdown            12          351            5          295           51

 (Total)                           3700         2787          411          502

===============================================================================

 Total                  32         6553         4352         1397          804

===============================================================================

This feature is not just limited to the default output of tokei. You can see it broken down by each file with the --files option.


===============================================================================

 Language            Files        Lines         Code     Comments       Blanks

===============================================================================

 Markdown                5         1230            0          965          265

 |- JSON                 1           41           41            0            0

 |- Rust                 2           53           42            6            5

 |- Shell                1           22           18            0            4

 (Total)                           1346          101          971          274

-------------------------------------------------------------------------------

 ./CODE_OF_CONDUCT.md                46            0           28           18

 ./CHANGELOG.md                     570            0          434          136

-- ./markdown.md --------------------------------------------------------------

 |- Markdown                          4            0            3            1

 |- Rust                              6            4            1            1

 |- (Total)                          10            4            4            2

-- ./README.md ----------------------------------------------------------------

 |- Markdown                        498            0          421           77

 |- Shell                            22           18            0            4

 |- (Total)                         520           18          421           81

-- ./CONTRIBUTING.md ----------------------------------------------------------

 |- Markdown                        112            0           79           33

 |- JSON                             41           41            0            0

 |- Rust                             46           38            4            4

 |- (Total)                         200           79           84           37

===============================================================================

 Total                   5         1346          101          971          274

===============================================================================

Breaking Changes

  • The JSON Output and format of Languages has changed.

  • The JSON feature has been removed and is now included by default.

  • Stats has been split into Report and CodeStats to better represent the separation between analysing a file versus a blob of code.


Discussion for the Tokei Package

Ground Rules:

  • This discussion is only about Tokei and the Tokei package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Tokei, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus