Can I use hono with JavaScript (not TypeScript)

Hi, I have a very small API project that I'm deploying on cloudflare workers, and was wondering if I can just switch to javascript instead of typescript? I tried searching the docs but can't find anything (possibly skill issues). Apparently JS works, it just shows me all the compiler warnings, but I still want to switch nonetheless. I am aware of the benefits of TS, but need JS for my project specifically. Thank you, and sorry if this has already been answered!
26 Replies
ambergristle
ambergristle3w ago
js is fine
ThinkValue
ThinkValueOP3w ago
Thank you
ambergristle
ambergristle3w ago
np typescript is (mostly) just javascript with annotations the typescript bit is never executed at runtime enums complicate this a bit, but i don't think hono uses those, and they'd be transpiled down to js anyways
ThinkValue
ThinkValueOP3w ago
Ok, so I'll just turn off compiler warnings and continue with JS
ambergristle
ambergristle3w ago
like back in the old days
Arjix
Arjix3w ago
Even if you don't want to write in TS files, you will benefit from having TS enabled in your project It can still lint and such Typescript also understands jsdoc Just add the noEmit flag to your compiler options
ThinkValue
ThinkValueOP3w ago
Great, thanks! Yup I'd like to use JSDoc for this project, it's kinda my goal.
Arjix
Arjix3w ago
jsdoc is limited, what I usually end up doing when I want js files, is to add complementary .d.ts files Or you can have one .d.ts file with interfaces/types and use it globally with jsdoc PS: if a .d.td file does not have import/export, it acts like a global definition, so you can use it anywhere
ThinkValue
ThinkValueOP3w ago
Would probably be enugh for my needs. Would like to avoid complicating and push simplicity boundaries instead
Arjix
Arjix3w ago
I implore you to not define complicated types with jsdoc, but to rely on .d.ts for that jsdoc can't do generics and such
ThinkValue
ThinkValueOP3w ago
I will be moving from the ground up on this one, with no pre-emptive typing, only add types and complicate the codebase if something breaks. The project is confounded to be small so I may get away with it.
Arjix
Arjix3w ago
If you have import/export you won't get away with it Even though typescript has the ability to type check code w/o type annotations, it doesn't do that if it is not in a .ts file It does the bare minimum jsdoc makes it check more stuff But wherever you don't use it, you won't have types
Arjix
Arjix3w ago
From my experience it doesn't, but I'll give it the benefit of the doubt because I used it on a large project that had no types
ambergristle
ambergristle3w ago
i'm a little confused. using typescript with jsdocs instead of .ts annotations is still typescript/will still give you typing svelte uses jsdocs internally for their typing
Arjix
Arjix3w ago
They won't use jsdoc where they think it's not needed is what they meant At least that's what I gathered
ambergristle
ambergristle3w ago
@ThinkValue so do you want typing w/o the .ts, or are you trying to avoid types altogether?
ThinkValue
ThinkValueOP3w ago
Avoid types, use JSDoc where needed I think the answers above are more than good enough to solve my problem.
ambergristle
ambergristle3w ago
this seems contradictory. it sounds like you're trying to avoid explicit typing, rather than typing altogether. once you're "in" the typescript ecosystem, you're in. either your code will be type-checked or not just something to keep in mind
ThinkValue
ThinkValueOP3w ago
Since I can't (or don't know how to) use a .js file in hono, .ts will have to do. But I'll turn off the checking. At the end of the project, will add JSDoc if needed.
Arjix
Arjix3w ago
Sorry for the photo For simple types you may think you can get away with this
No description
Arjix
Arjix3w ago
But you'll be wrong
ThinkValue
ThinkValueOP3w ago
https://sec-financial-data.thinkvalue.workers.dev/ Can I get away with math? It's a small Json in, Json out calculation API
ambergristle
ambergristle3w ago
with math? what do you mean?
ThinkValue
ThinkValueOP3w ago
All I'm doing is pulling some data, making calculations and returning JSON The link above is my work in progress output. No types or JSDoc atm
ambergristle
ambergristle3w ago
gotcha. could get a little messy constructing object types in jsdocs (rather than in a d.ts, but if you've only got a few properties per object, @Arjix's @typedef suggestion will work fine

Did you find this page helpful?