Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make generated code smaller by putting reusable strings to constants or functions #128

Open
zdila opened this issue May 7, 2022 · 1 comment

Comments

@zdila
Copy link
Contributor

zdila commented May 7, 2022

When I read the generated code it often repeats strings like "validation failed at ", ": there are no valid alternatives", ": expected an object" and many more. Putting those to const variables and then using only those consts instead should help to reduce the size. Or maybe better to create error message builder functions like this:

function expectedProperty(path, property) {
  return `validation failed at ${path.join(".")}: expected '${property}' in object`;
}

Minifiers will also minify function and variable names.

@zdila zdila changed the title Make generated code smaller by putting reusable strings to constants Make generated code smaller by putting reusable strings to constants or functions May 7, 2022
@samchon
Copy link
Contributor

samchon commented Oct 10, 2022

This library reduces generated code and elapsed time through closure:

https://github.com/samchon/typescript-json#runtime-validators

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants