Downloads:
5,864
Downloads of v 12.1.2:
1,606
Last Update:
13 Jan 2021
Package Maintainer(s):
Software Author(s):
- Erin Power
Tags:
clock sloc cloc code rusty- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Tokei
- 1
- 2
- 3
12.1.2 | Updated: 13 Jan 2021
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
5,864
Downloads of v 12.1.2:
1,606
Maintainer(s):
Software Author(s):
- Erin Power
Tokei 12.1.2
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Erin Power. The inclusion of Erin Power trademark(s), if any, upon this webpage is solely to identify Erin Power goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Exemption:
Dependency requires reboot
Scan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download tokei --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade tokei -y --source="'INTERNAL REPO URL'" [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'"
$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.1.2'
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.1.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller tokei
{
Name = "tokei"
Version = "12.1.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'tokei':
ensure => '12.1.2',
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.
This package was approved as a trusted package on 13 Jan 2021.
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.
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.
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.1.2/tokei-i686-pc-windows-msvc.exe
x86_64: https://github.com/XAMPPRocky/tokei/releases/download/v12.1.2/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: 49207c0497525431ad121165ee50fb7919167e8a61f1e246296b54e0eba73ac316690d2c57b1104df8159a0dcbc88e1ba4f2a25df8e384040a56c79a6bcbedff
checksum64: 3d2dbc3726350f9329b292397139f7e0fe1cf5f705b5dd5231c73a2a807644a2616084e4b2612eef0c9988581d991a11fbfd96f25c04ec2db4e844e5aa5e3f09
File 'LICENSE.txt' obtained from:
https://github.com/XAMPPRocky/tokei/blob/v12.1.2/LICENCE-MIT
and
https://github.com/XAMPPRocky/tokei/blob/v12.1.2/LICENCE-APACHE
md5: 76B83621FF1C91883D389551B88AF682 | sha1: E259A9740440986C394E3FF244E93C26B0184C0F | sha256: 451219F8384301293F36FA04ABDB50FB3A95FDDB0BC10EFFF9C4496D1ED0817D | sha512: 49207C0497525431AD121165EE50FB7919167E8A61F1E246296B54E0EBA73AC316690D2C57B1104DF8159A0DCBC88E1BA4F2A25DF8E384040A56C79A6BCBEDFF
md5: D945141597B7DEFD43F715F7F392DF11 | sha1: 55D01AABB14CC97E70B174907D0F53D00C19546C | sha256: B1D6C4B18F5FA238BD2C6E47CAA65A7A3E4A1BD0DE6DF0B7C19C8083C941F57B | sha512: 3D2DBC3726350F9329B292397139F7E0FE1CF5F705B5DD5231C73A2A807644A2616084E4B2612EEF0C9988581D991A11FBFD96F25C04EC2DB4E844E5AA5E3F09
Log in or click on link to see number of positives.
- tokei.12.1.2.nupkg (6d19dcc56fa3) - ## / 65
- tokei-i686-pc-windows-msvc.exe (451219f83843) - ## / 71
- tokei-x86_64-pc-windows-msvc.exe (b1d6c4b18f5f) - ## / 68
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.2 | 1606 | Wednesday, January 13, 2021 | Approved | |
Tokei 12.1.1 | 114 | Saturday, January 2, 2021 | Approved | |
Tokei 12.0.4.1 | 248 | Tuesday, September 29, 2020 | Approved | |
Tokei 12.0.4 | 112 | Tuesday, September 29, 2020 | Approved | |
Tokei 12.0.3 | 104 | Tuesday, September 29, 2020 | Approved | |
Tokei 12.0.2 | 104 | Tuesday, September 29, 2020 | Approved | |
Tokei 12.0.1 | 109 | Tuesday, September 29, 2020 | Approved | |
Tokei 12.0.0 | 114 | Tuesday, September 29, 2020 | Approved | |
Tokei 11.2.1 | 112 | Tuesday, September 29, 2020 | Approved | |
Tokei 11.2.0 | 131 | Tuesday, September 29, 2020 | Approved | |
Tokei 11.1.1 | 119 | Tuesday, September 29, 2020 | Approved | |
Tokei 11.1.0 | 99 | Tuesday, September 29, 2020 | Approved | |
Tokei 11.0.0 | 118 | Tuesday, September 29, 2020 | Approved | |
Tokei 10.1.2 | 108 | Tuesday, September 29, 2020 | Approved | |
tokei 9.1.0 | 133 | Monday, September 28, 2020 | Approved | |
tokei 9.0.0 | 118 | Monday, September 28, 2020 | Approved | |
tokei 8.0.1 | 96 | Monday, September 28, 2020 | Approved | |
tokei 7.0.3 | 102 | Monday, September 28, 2020 | Approved | |
tokei 7.0.2 | 116 | Monday, September 28, 2020 | Approved | |
tokei 6.1.2 | 113 | Monday, September 28, 2020 | Approved | |
tokei 6.1.1 | 104 | Monday, September 28, 2020 | Approved | |
tokei 6.1.0 | 121 | Monday, September 28, 2020 | Approved | |
tokei 6.0.1 | 103 | Monday, September 28, 2020 | Approved | |
tokei 6.0.0 | 103 | Monday, September 28, 2020 | Approved | |
tokei 5.0.6 | 100 | Monday, September 28, 2020 | Approved | |
tokei 5.0.5 | 124 | Monday, September 28, 2020 | Approved | |
tokei 5.0.4 | 104 | Monday, September 28, 2020 | Approved | |
tokei 4.5.4.1 | 104 | Monday, September 28, 2020 | Approved | |
tokei 4.5.4 | 131 | Monday, September 28, 2020 | Approved | |
tokei 4.5.3 | 124 | Monday, September 28, 2020 | Approved | |
tokei 4.2.0 | 108 | Monday, September 28, 2020 | Approved | |
tokei 3.0.0 | 108 | Monday, September 28, 2020 | Approved | |
tokei 2.1.0 | 113 | Monday, September 28, 2020 | Approved | |
tokei 2.0.0 | 108 | Saturday, September 26, 2020 | Approved | |
tokei 1.3.1 | 116 | Saturday, September 26, 2020 | Approved | |
tokei 1.2.0 | 89 | Saturday, September 26, 2020 | Approved | |
tokei 1.1.0 | 113 | Saturday, September 26, 2020 | Approved | |
rusty-cloc 1.0.0 | 115 | Wednesday, September 23, 2020 | Approved |
Copyright © 2015 - 2020 Erin Power and contributors
-
- vcredist140 (≥ 14.20.27508.1)
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.