ts-nameof
nameof in TypeScript (by dsherret)
ttypescript
Over TypeScript tool to use custom transformers in the tsconfig.json (by cevek)
ts-nameof | ttypescript | |
---|---|---|
1 | 9 | |
499 | 1,538 | |
0.0% | 0.0% | |
0.0 | 3.5 | |
over 2 years ago | about 2 years ago | |
TypeScript | TypeScript | |
MIT License | - |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ts-nameof
Posts with mentions or reviews of ts-nameof.
We have used some of these posts to build our list of alternatives
and similar projects.
-
Creating an axios service wrapper (in Vue)
// src/services/lps/SynonymGroupApiService.ts import type { SynonymGroup } from '@/shared/models/entities/Synonym'; import type { Pageable, Sort } from '@/shared/requests/Pageable'; import type { Search } from '@/shared/requests/Search'; import type { Page } from '@/shared/responses/Page'; import { ServiceCacher } from '../ServiceCacher'; import { AbstractLpsApiService } from './LpsApiService'; export interface SynonymGroupFilter extends Search, Pageable, Sort {} class SynonymGroupApiService extends AbstractLpsApiService { public constructor(lpsPortalUrl: string) { super('/synonym-groups', lpsPortalUrl); } public findAllPaged({ search }: SynonymGroupFilter = {}): Promise> { return this.http.get('', { params: { search } }) .then(this.handleResponse.bind(this)) .catch(this.handleError.bind(this)); } public findById(id: number): Promise { return this.http.get(`/${id}`) .then(this.handleResponse.bind(this)) .catch(this.handleError.bind(this)); } public create(content: SynonymGroup): Promise { return this.http.post('', content) .then(this.handleResponse.bind(this)) .catch(this.handleError.bind(this)); } public update(id: number, content: SynonymGroup): Promise { return this.http.put(`/${id}`, content) .then(this.handleResponse.bind(this)) .catch(this.handleError.bind(this)); } public delete(id: number): Promise { return this.http.delete(`/${id}`) .then(this.handleResponse.bind(this)) .catch(this.handleError.bind(this)); } } const serviceCacher: ServiceCacher = new ServiceCacher( nameof(), // https://github.com/dsherret/ts-nameof SynonymGroupApiService ); export function synonymGroupApiService(baseUrl: string): SynonymGroupApiService { return serviceCacher.instance(baseUrl); }
ttypescript
Posts with mentions or reviews of ttypescript.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-18.
-
Ts-morph – programmatically manipulate TypeScript source code with TypeScript
Actually this can easily overcome by using https://github.com/cevek/ttypescript that allows using transformers in tsc and define then in tsconfig.json
-
Can TS transpile struct to ARRAY? Can give massive memory/perf gains.
You could write custom transformer for this (using ttypescript), if you really want to
-
Tuple | union from file system
didn't look to hard at it but afaik ttypescript is what you need https://github.com/cevek/ttypescript
-
Stop Using "AST" Directly
That's it! after this, just register it with the method described on ttypescript.
-
ts-dynamodb-attributes-transformer - A code transformer of TypeScript object to DynamoDB attributes
As I noted above, this is a TypeScript transformer plugin so it needs to hook this plugin on TypeScript compilation phase. I suppose one of the easiest ways is using ttypescript which is a custom TypeScript compiler that can hook the transformer plugin on a compilation. Please refer also to the "How to use this transformer" section in README.
-
Absolute => Relative paths during transpilation?
If you don't want to use a bundler, you can use https://github.com/cevek/ttypescript in combination with https://github.com/LeDDGroup/typescript-transform-paths
-
Automatically generating typeguard functions
You can use the plugin https://github.com/awerlogus/io-ts-transformer with https://github.com/cevek/ttypescript to get compile time generation of io-ts codecs as well.
-
Forking the typescript compiler and building on it?
There is also a forked version of the compiler that allows custom transformers: https://github.com/cevek/ttypescript
-
TypeScript++?
Closest I can think of is ttypescript
What are some alternatives?
When comparing ts-nameof and ttypescript you can also consider the following projects:
compiled-css-in-js - A familiar and performant compile time CSS-in-JS library for React. [Moved to: https://github.com/atlassian-labs/compiled]
ts-morph - TypeScript Compiler API wrapper for static analysis and programmatic code changes.
nornj - More exciting JS/JSX based on Template Engine, support control flow tags, custom directives, two-way binding, filters and custom operators.
TypeScriptToLua - Typescript to lua transpiler. https://typescripttolua.github.io/
graphql-let - A webpack loader / babel-plugin / babel-plugin-macros / CLI / generated file manager of GraphQL code generator.
typescript-transform-paths - Transforms module resolution paths using TypeScript path mapping and/or custom paths