All Projects → salimkayabasi → Types Checker

salimkayabasi / Types Checker

Check missing type definition modules for your Typescript project

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Types Checker

Code Checker
✅ A simple tool to check source code against a set of Nette coding standards.
Stars: ✭ 76 (+322.22%)
Mutual labels:  tool, checker
Dotgrid
Minimalist Vector Tool
Stars: ✭ 808 (+4388.89%)
Mutual labels:  tool
Diskus
A minimal, fast alternative to 'du -sh'
Stars: ✭ 674 (+3644.44%)
Mutual labels:  tool
Demoit
Live coding demos without Context Switching
Stars: ✭ 717 (+3883.33%)
Mutual labels:  tool
Atlas
Quick SQLMap Tamper Suggester
Stars: ✭ 679 (+3672.22%)
Mutual labels:  tool
Rome
Carthage cache for S3, Minio, Ceph, Google Storage, Artifactory and many others
Stars: ✭ 724 (+3922.22%)
Mutual labels:  tool
Gut
Godot Unit Test. Unit testing tool for Godot Game Engine.
Stars: ✭ 670 (+3622.22%)
Mutual labels:  tool
Nexer
Content based network multiplexer or redirector made with love and Go
Stars: ✭ 7 (-61.11%)
Mutual labels:  tool
Pixterm
Draw images in your ANSI terminal with true color
Stars: ✭ 782 (+4244.44%)
Mutual labels:  tool
Hexyl
A command-line hex viewer
Stars: ✭ 6,349 (+35172.22%)
Mutual labels:  tool
Hover
Hover helps developers to release Flutter applications on desktop.
Stars: ✭ 698 (+3777.78%)
Mutual labels:  tool
Braindamage
Remote administration tool which uses Telegram as a C&C server
Stars: ✭ 681 (+3683.33%)
Mutual labels:  tool
Glasscord
[BUGFIXES ONLY, SUPPORT WILL DROP MAR 1, 2021] Injecting composition effects into Electron applications!
Stars: ✭ 737 (+3994.44%)
Mutual labels:  tool
Legit
Git for Humans, Inspired by GitHub for Mac™.
Stars: ✭ 5,682 (+31466.67%)
Mutual labels:  tool
Asyncrat C Sharp
Open-Source Remote Administration Tool For Windows C# (RAT)
Stars: ✭ 819 (+4450%)
Mutual labels:  tool
Lldebugtool
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 673 (+3638.89%)
Mutual labels:  tool
Awesome bot
✅ Validate links in awesome projects
Stars: ✭ 697 (+3772.22%)
Mutual labels:  tool
Spirit
🙌 Play Spirit animations on the web
Stars: ✭ 719 (+3894.44%)
Mutual labels:  tool
Dotnet Ignore
.NET CLI tool that can download .gitignore file from gitignore repository
Stars: ✭ 18 (+0%)
Mutual labels:  tool
Nexphisher
Advanced Phishing tool for Linux & Termux
Stars: ✭ 822 (+4466.67%)
Mutual labels:  tool

types-checker

Dependency Status npm npm version Build Status

Check missing type definition modules for your Typescript project

You may forget to add type definitions for your projects. It's hard to add all dependencies at the same time. You need to be sure that how many modules have definition module like @types/....

types-checker will do it for you

cd path/of/your/project
types-checker # aliases ts-checker OR tscheck

asciicast

Usage

Default params

tscheck
Starting [email protected]
These modules are missing @types/config @types/node
Please run with '--all' param if you want to install these dependencies
Done in 1.66s

Using with Yarn

tscheck -a
Starting [email protected]
These modules are missing @types/config @types/node
Running yarn add --dev @types/config @types/node
Done in 2.66s

Using with NPM

tscheck -a -N
Starting [email protected]
These modules are missing @types/config @types/node
Running npm install --save-dev @types/config @types/node
Done in 2.00s

Interactive Mode

asciicast

Installing

yarn add global types-checker

or

npm i -g types-checker

Options

types-checker --help

Usage: types-checker [options]

Options:

  -V, --version           output the version number
  -l, --logger            Debug output. See all logs
  -c, --no-color          Disable colored output
  -a, --install           Install all possible type definitions
  -e, --error             Return the number of packages as exit code
  -p, --path [value]      Path for package.json file
  -i, --interactive       Interactive mode
  -N, --use-npm           Use NPM instead of Yarn
  -D, --dev-dependencies  Search for devDependencies
  -h, --help              output usage information

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].