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,037

Downloads of v 11.1.1:

102

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

11.1.1 | Updated: 29 Sep 2020

Downloads:

5,037

Downloads of v 11.1.1:

102

Maintainer(s):

Software Author(s):

  • Erin Power

Tokei 11.1.1

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="'11.1.1'" [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="'11.1.1'" 
$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: '11.1.1'
    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  '11.1.1'
end

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


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

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


package { 'tokei':
  ensure   => '11.1.1',
  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/v11.1.1/tokei-i686-pc-windows-msvc.zip
   x86_64: https://github.com/XAMPPRocky/tokei/releases/download/v11.1.1/tokei-x86_64-pc-windows-msvc.zip

   to download the zip file(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:   dc992c8bfbf0ac5b18fa46715eb30bcc16d8134b0c6da39ec9278589e0f4dc09164eacdeb311c9f0d76fa328ed32233cdd11986f78f2b2a74765444aa522795b
   checksum64: 3de80ecbc6f2722431d34d89defbb31c32136b92a6a3984993a7437ea70f21076c8aa2996f5c9d9b59db3e746e1f4af3653dfeb0f1b9f34e22b3f9321e36be28

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

$PackageArgs = @{
	PackageName    = $PackageName
	FileFullPath   = Get-Item $(Join-Path $ToolsPath 'tokei-i686-pc-windows-msvc.zip')
	FileFullPath64 = Get-Item $(Join-Path $ToolsPath 'tokei-x86_64-pc-windows-msvc.zip')
	Destination    = $ToolsPath
};
	
Get-ChocolateyUnzip @PackageArgs;
Remove-Item ($ToolsPath + '\*.' + 'zip');
tools\tokei-i686-pc-windows-msvc.zip
md5: 2D009114134F8FE9C5963F6D50757B7C | sha1: CFFA0F29A71E86746C9DB33F738A23C66F71AE72 | sha256: 91AF6CACDE545E8CFFCA5D2DC3C28AEBCDFF6FF04946377D5C1309FB252525BC | sha512: DC992C8BFBF0AC5B18FA46715EB30BCC16D8134B0C6DA39EC9278589E0F4DC09164EACDEB311C9F0D76FA328ED32233CDD11986F78F2B2A74765444AA522795B
tools\tokei-x86_64-pc-windows-msvc.zip
md5: 2968B88A9B9D3CD99B38028D885F41E8 | sha1: 5F53333247A402E6B16CCF38287437A6008EF08D | sha256: DFDD59CA4489DF56E9EF9186C6E176151ECD1B930FAD188C54367112882F7344 | sha512: 3DE80ECBC6F2722431D34D89DEFBB31C32136B92A6A3984993A7437EA70F21076C8AA2996F5C9D9B59DB3E746E1F4AF3653DFEB0F1B9F34E22B3F9321E36BE28

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 234 Tuesday, September 29, 2020 Approved
Tokei 12.0.4 94 Tuesday, September 29, 2020 Approved
Tokei 12.0.3 86 Tuesday, September 29, 2020 Approved
Tokei 12.0.2 88 Tuesday, September 29, 2020 Approved
Tokei 12.0.1 97 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 102 Tuesday, September 29, 2020 Approved
Tokei 11.1.0 86 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 111 Monday, September 28, 2020 Approved
tokei 5.0.4 89 Monday, September 28, 2020 Approved
tokei 4.5.4.1 91 Monday, September 28, 2020 Approved
tokei 4.5.4 82 Monday, September 28, 2020 Approved
tokei 4.5.3 108 Monday, September 28, 2020 Approved
tokei 4.2.0 93 Monday, September 28, 2020 Approved
tokei 3.0.0 93 Monday, September 28, 2020 Approved
tokei 2.1.0 98 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 72 Saturday, September 26, 2020 Approved
tokei 1.1.0 97 Saturday, September 26, 2020 Approved
rusty-cloc 1.0.0 98 Wednesday, September 23, 2020 Approved

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