Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

effective-typescript-skills

يحتوي effective-typescript-skills على 83 من skills المجمعة من marius-townhouse، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
83
Stars
3
محدث
2026-02-03
Forks
1
التغطية المهنية
1 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

accurate-environment-model
مطوّرو البرمجيات

Use when defining global types. Use when augmenting window. Use when typing environment variables. Use when working with build-time constants. Use when configuring type definitions.

2026-02-03
allowjs-mixing
مطوّرو البرمجيات

Use when migrating JavaScript to TypeScript. Use when gradually adopting TypeScript. Use when working with mixed codebases. Use when converting large projects. Use when teams are learning TypeScript.

2026-02-03
async-over-callbacks
مطوّرو البرمجيات

Use when writing asynchronous code. Use when tempted to use callbacks. Use when composing multiple async operations.

2026-02-03
avoid-anecdotal-types
مطوّرو البرمجيات

Use when creating types from example data. Use when types don't match all cases. Use when API responses vary.

2026-02-03
avoid-inferable-annotations
مطوّرو البرمجيات

Use when writing type annotations on variables. Use when TypeScript can infer the type. Use when code feels cluttered with types.

2026-02-03
avoid-numeric-index
مطوّرو البرمجيات

Use when defining array-like types. Use when tempted to use number as index type. Use when understanding array keys.

2026-02-03
avoid-repeated-params
مطوّرو البرمجيات

Use when functions have multiple parameters of same type. Use when parameter order is easy to confuse. Use when designing function signatures.

2026-02-03
avoid-unnecessary-type-params
مطوّرو البرمجيات

Use when writing generic functions or types. Use when reviewing type signatures. Use when a type parameter only appears once. Use when tempted to add generics for "flexibility".

2026-02-03
avoid-wrapper-types
مطوّرو البرمجيات

Use when typing primitives. Use when tempted to use String, Number, Boolean. Use when wrapper types appear in errors.

2026-02-03
branded-types
مطوّرو البرمجيات

Use when primitive types need semantic distinction. Use when string or number types have different meanings. Use when you need nominal typing.

2026-02-03
callback-this-type
مطوّرو البرمجيات

Use when callbacks use this. Use when API provides this context. Use when typing event handlers. Use when library sets this in callbacks. Use when documenting callback context.

2026-02-03
code-gen-independent
مطوّرو البرمجيات

Use when confused about types at runtime. Use when trying to use instanceof with interfaces. Use when type errors don't prevent JavaScript output.

2026-02-03
codegen-over-complex-types
مطوّرو البرمجيات

Use when types become extremely complex. Use when types mirror external schemas. Use when maintaining type-to-schema mappings. Use when types require extensive type-level logic. Use when types drift from data sources.

2026-02-03
compiler-performance
مطوّرو البرمجيات

Use when build times are slow. Use when optimizing TypeScript projects. Use when configuring project references. Use when dealing with large codebases. Use when improving IDE responsiveness.

2026-02-03
conditional-types-over-overloads
مطوّرو البرمجيات

Use when typing functions with multiple return types. Use when function behavior depends on input type. Use when dealing with union type inputs. Use when considering function overloads.

2026-02-03
consistent-aliases
مطوّرو البرمجيات

Use when narrowing doesn't work as expected. Use when using variables for object properties. Use when refinements are lost.

2026-02-03
context-type-inference
مطوّرو البرمجيات

Use when extracting values causes type errors. Use when callback types are wrong. Use when const assertions are needed.

2026-02-03
control-union-distribution
مطوّرو البرمجيات

Use when conditional types behave unexpectedly with unions. Use when boolean or never types cause surprises. Use when needing to prevent distribution over unions. Use when recursive generic types don't distribute.

2026-02-03
create-objects-all-at-once
مطوّرو البرمجيات

Use when building objects incrementally. Use when adding properties after creation. Use when TypeScript errors on dynamic object construction.

2026-02-03
currying-inference
مطوّرو البرمجيات

Use when generic types aren't inferred. Use when builder patterns need better types. Use when creating new inference sites.

2026-02-03
different-variables-types
مطوّرو البرمجيات

Use when tempted to reuse variables. Use when variable changes type. Use when using union types for multiple purposes.

2026-02-03
distinct-special-values
مطوّرو البرمجيات

Use when tempted to use -1 or "" as special values. Use when indexOf returns -1. Use when special cases need representation.

2026-02-03
dom-hierarchy
مطوّرو البرمجيات

Use when working with DOM APIs. Use when typing element references. Use when creating DOM utilities. Use when handling events. Use when manipulating the DOM.

2026-02-03
domain-language-types
مطوّرو البرمجيات

Use when naming types. Use when types describe structure not meaning. Use when domain experts won't understand type names.

2026-02-03
dry-types
مطوّرو البرمجيات

Use when duplicating type definitions. Use when interfaces share common fields. Use when types can be derived from other types.

2026-02-03
ecmascript-over-typescript-features
مطوّرو البرمجيات

Use when choosing between TypeScript and ECMAScript features. Use when writing portable code. Use when considering enum or namespace. Use when targeting multiple JavaScript environments. Use when writing library code.

2026-02-03
editor-interrogation
مطوّرو البرمجيات

Use when debugging type inference. Use when types behave unexpectedly. Use when learning unfamiliar code.

2026-02-03
evolving-types
مطوّرو البرمجيات

Use when types change as code executes. Use when arrays are built incrementally. Use when working with any[] that narrows.

2026-02-03
excess-property-checking
مطوّرو البرمجيات

Use when assigning object literals to typed variables. Use when confused by "unknown property" errors. Use when extra properties are flagged on object literals but not variables.

2026-02-03
exclusive-or-properties
مطوّرو البرمجيات

Use when exactly one of several properties should be present. Use when modeling mutually exclusive options. Use when building component props with alternative configurations. Use when designing API parameters that have variants.

2026-02-03
exhaustiveness-checking
مطوّرو البرمجيات

Use when handling tagged unions. Use when adding new cases to discriminated unions. Use when switch statements must cover all cases.

2026-02-03
export-public-types
مطوّرو البرمجيات

Use when publishing libraries. Use when types appear in public APIs. Use when users need to reference types. Use when building reusable components. Use when designing library interfaces.

2026-02-03
function-type-expressions
مطوّرو البرمجيات

Use when writing multiple functions with same signature. Use when implementing callbacks. Use when matching existing function types.

2026-02-03
functional-constructs-types
مطوّرو البرمجيات

Use when building arrays in loops. Use when types don't flow through code. Use when considering map/filter/reduce.

2026-02-03
generics-as-functions
مطوّرو البرمجيات

Use when defining generic types or functions. Use when constraining type parameters. Use when writing type-level code. Use when documenting generic types.

2026-02-03
hide-unsafe-assertions
مطوّرو البرمجيات

Use when type assertions are necessary. Use when function implementations need any. Use when hiding unsafe code.

2026-02-03
imprecise-over-inaccurate
مطوّرو البرمجيات

Use when types become too complex. Use when precision causes false positives. Use when accuracy is uncertain.

2026-02-03
index-signature-alternatives
مطوّرو البرمجيات

Use when defining object types with dynamic keys. Use when tempted to use index signatures. Use when parsing CSV or JSON data.

2026-02-03
iterate-objects-safely
مطوّرو البرمجيات

Use when iterating over object keys and values. Use when for...in loops produce type errors. Use when Object.entries returns any types. Use when dealing with prototype pollution concerns. Use when considering Map vs object.

2026-02-03
liberal-accept-strict-return
مطوّرو البرمجيات

Use when designing function signatures. Use when creating APIs. Use when parameters have optional fields but return types feel too broad.

2026-02-03
عرض أهم 40 من أصل 83 skills مجمعة في هذا المستودع.