TS vs JSDoc | Prime Reacts

  Рет қаралды 89,350

ThePrimeTime

ThePrimeTime

Жыл бұрын

Recorded live on twitch, GET IN
/ theprimeagen
MY MAIN YT CHANNEL: Has well edited engineering videos
/ theprimeagen
Discord
/ discord
Have something for me to read or react to?: / theprimeagenreact

Пікірлер: 257
@echobucket
@echobucket Жыл бұрын
There's a JS Proposal in stage 1 to add typescript type annotations to JS itself. This is probably the future of all this stuff.
@user-mx1ek4sl2m
@user-mx1ek4sl2m Жыл бұрын
amen
@DMWatchesYoutube
@DMWatchesYoutube Жыл бұрын
I don't use JS ( No web dev sadly) but I might try it out if I could guarantee at least some speed or better debugging without having to set up so much tooling for TS
@zaccanoy
@zaccanoy Жыл бұрын
I think the idea is to have “types as comments” so that it’s not tied down to TypeScript in particular (i may be out of the loop though). Most importantly though is that your browser / node will ignore the type annotations (but like SOMEONE is definitely going to add typescript to their debugger right? Edge or Arc maybe)
@jamievisker1952
@jamievisker1952 Жыл бұрын
I really want this, but I’m not convinced it will ever get through
@banatibor83
@banatibor83 Жыл бұрын
@@zaccanoy Pyton used comments for type annotations, then in Python 3.4 they have added a proper typing package and type hints.
@jaredsmith5826
@jaredsmith5826 Жыл бұрын
I love how what the Google Closure Compiler was doing 10 years ago is now the "new hotness". I can understand even as a Typescript fan why Svelte went that way though: you've got a compile-to-js language inside of another compile-to-js language. Javasception. You are spot on about the translation layer pain.
@DeusGladiorum
@DeusGladiorum Жыл бұрын
Before I convinced my team to migrate to TS, I used JSDoc typings in all of my projects. It also helped me very intuitively understand that TS was just... you know, annotations, and most of it didn't actually have any runtime effect.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
you can still have that with js docs, just .d.ts out complex types
@elmalleable
@elmalleable Жыл бұрын
dude i had a work colleague i pair programmed with, he complained that ts was over his head, i made a few types, it helped us a few times to caught logic and basic typo errors. next day my bro took out all the jsdoc annotations because, i was dumb founded, like he just wanted to walk into all the errors from the day before all over again. i was going to make him a cheatsheet and make myself available to show him everything i knew but ..........
@billy818
@billy818 Жыл бұрын
hey man love your videos, they really helped me through some recent burnout
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
my man
@FoodFoodMoney
@FoodFoodMoney Жыл бұрын
My man
@davidem3283
@davidem3283 Жыл бұрын
Your man
@jaroslavhuss7813
@jaroslavhuss7813 Жыл бұрын
your man
@Slashx92
@Slashx92 Жыл бұрын
my man
@vitiok78
@vitiok78 Жыл бұрын
Typescript refactoring is a huge thing in JetBrains IDEs. It is simply fantastic. Even for JSDoc. But for Typescript it's just better
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
this is what i am very curious about
@idkidk9204
@idkidk9204 Жыл бұрын
I do agree, as someone who MUST have a statically typed language but had to write in JS I found jetbrains implementation a life saver
@SimonBuchanNz
@SimonBuchanNz Жыл бұрын
​@@ThePrimeTimeagen I've found Jetbrains' stuff to be really cool but the raw quality to be all over the place. I strongly recommend it for the price, but be aware you're gonna have bugs and random performance. I blame the JVM. (Can't blame Java since they created Kotlin to avoid it)
@jeremiedubuis5058
@jeremiedubuis5058 Жыл бұрын
@@ThePrimeTimeagen I mostly use jetbrains refactoring for renaming, it also works with stuff like React's state hooks (rename the state it will also rename the setter), rename a class it will ask if you wish to rename the file)... In my es modules projects it usually gets everything right, in my commonjs projects it oftens misses some references, I don't know if I can make a direct link to typescript vs jsdoc, I would bet on it just being better at interpreting es modules dependency graphs.
@zaccanoy
@zaccanoy Жыл бұрын
I don’t have any random issues with Jetbrains products anymore, idk if they’re more stable or if I’m just working in things that they’ve built the most for (server-side, mobile, and web Kotlin, React/TypeScript). I do want to note that I spend as much time as possible in IntelliJ, as android studio and webstorm feel kinda dated and don’t have the complete feature set. The kotlin and typescript inspections and refactoring are magical, we’ve likely eliminated entire classes of bugs in some of our products with it (unit testing could also find most of these tbh, but our company relies more on tooling and post-dev QA)
@richardcesar5546
@richardcesar5546 Жыл бұрын
I have hundreds of thousands of LOC in a production codebase that uses this strategy. TS was not popular at the time, but jetbrains supported these annotations out of the box. There is still a bit more typing tricks you can get with TS though in regards to interfaces and type inference/elasion (where you have markers that distinguish types automatically)
@AttilaButurla
@AttilaButurla Жыл бұрын
At my last company the CIO was anti-TypeScript, so we ended up using JSDoc. It's certainly was nice not having a compilation step. At other companies, I've also seen people go crazy with TypeScript, going way beyond just adding types, and instead using more advanced language features. Suddenly everything became a class, with interfaces, enums, generics, etc. I'm not the biggest fan of that kind of approach.
@theairaccumulator7144
@theairaccumulator7144 Жыл бұрын
Those people were taking the Java in JavaScript way too seriously
@JuriBinturong
@JuriBinturong Жыл бұрын
@@theairaccumulator7144 lol😆
@kamehameha38
@kamehameha38 Жыл бұрын
So it's okay to use types "any" sometimes? In my company, I'm forbidden to use implicit return and must add types for everything.
@ReviloYaj
@ReviloYaj Жыл бұрын
​@@kamehameha38 yea we can't use any unless you've exhausted all other routes, which is never. Everything has a type!
@shableep
@shableep 8 ай бұрын
my policy with typescript is to only directly annotate types when they can’t be inferred. and only use interfaces if absolutely necessary. every single character types into the codebase is a new part that has to be maintained. so reduce as many parts as possible. the goal of types is to make the use of your code to others and your future self so obvious that you couldn’t possibly use the modules you create incorrectly. it’s about creating an amazing developer experience for yourself in the future. which means awesome autocomplete and minimum maintenance.
@MaryTheTankGirl
@MaryTheTankGirl Жыл бұрын
I am a C and Rust dev. Last month I had to use typescript. When I realized that there is no dedicated char type my brain exploded.
@Sergeeeek
@Sergeeeek Жыл бұрын
That's JavaScript for ya. Though I'm sure v8 and other engines have some crazy optimizations for single char strings.
@robertluong3024
@robertluong3024 Жыл бұрын
Keep going. It's important to open your mind to other languages and things. Even if they horrify you :)
@abdelazizmokhnache766
@abdelazizmokhnache766 Жыл бұрын
There is a shorter syntax for JSDoc functions typing (TypeScript-like) that is more readable, for example. you can do this to type the function shown at 13:38 in one line like this: /** @type { (p1 : string, p2 : string, p3 : string, p4 : string) => string } */ Defining types in *.d.ts files using TypeScript syntax and consuming them via JSDoc is possible too.
@elmalleable
@elmalleable Жыл бұрын
its cool till you have to import then you see something like function someFunction( /** @type { import('../../../../.../fromTheRoadLeastTravel').SomeVarLeastUsed} a) { ....} but jsdoc is amazing for old js projects
@abdelazizmokhnache766
@abdelazizmokhnache766 Жыл бұрын
You can import that on the top of the file and assign it to a new type using @typedef, then use that type name elsewhere in the file. It doesn't need to be that ugly. ex: /** @typedef { import('../../../../.../Types').SomeType} SomeType*/ down in the file /** @type {(a: string) => SomeType} function doSomething(a) {...}
@elmalleable
@elmalleable Жыл бұрын
@@abdelazizmokhnache766 i like this. Amazing
@kiwik2945
@kiwik2945 3 ай бұрын
​@@abdelazizmokhnache766 you can also import it like this : import * as T from ../../../../.../types /** @typedef { T.SomeType} SomeType */
@nathanfranck5822
@nathanfranck5822 Жыл бұрын
I use jsdoc types for my work, and it feels like the best decision for me - adds more safety like how I'm used to with Typescript while avoiding the transpilation step. Coworkers who just want to modify my script can do so freely without worrying about adopting a workflow. The rest of the scripts are already js, so mine are just safer!
@fearclan5913
@fearclan5913 Жыл бұрын
AWWWWWW HE SAID AT THE FIRST 20 sec "Hi youtube" thats a honor
@smallfox8623
@smallfox8623 Жыл бұрын
There is a silly argument in this video. TypeScript is definitely statically typed. The only thing static typing implies is compile time type checking. Saying that TypeScript isnt statically typed because the type information doesn't survive compilation into runtime is like saying C++ isn't statically typed because the type information is lost in the resulting ASM. The presence of the any type also doesn't make it not statically typed just as the presence of dynamic in C# or void pointers in C++ doesn't make those languages not statically typed. These constructs are just exceptions to the type system.
@exegeteio
@exegeteio Жыл бұрын
Would be curious to see a poll of amount of experience with the editors? I’ve been around the world on editors, and end up back at vi (and neovim for a month or so), but would be curious what this large community would say.
@dickheadrecs
@dickheadrecs Жыл бұрын
13:13 on the flipside - those TS function definitions with insanely long typed parameters look like swift code 🤢 to someone who’s more used to jsdoc than typescript. another thing you can do is write function templates with the annotations at the top of file and the implementation lower down like a c/pp header file with doxygen comments but the implementation is just lower down in the same js file a language server scanning a codebase for jsdoc comments and @typedefs with no build step is a beautiful thing
@pseudoc
@pseudoc Жыл бұрын
I love jsdoc and have been using it for quite a long time, the most thing annoys me is that it does take more time in defining types in the comment than write types after the colons, but ever since I start to use copilot, that pain has gone.
@Tony-dp1rl
@Tony-dp1rl 10 ай бұрын
I must admit, before TS, I never spent more than a day a year on a type-related issue in JS ... so by going to TS, I have probably lost more time than I have saved.
@zebraforceone
@zebraforceone Жыл бұрын
I've been using interfaces for React components and it's been helpful there. It's beginning to feel very much like classes though. I like that TypeScript brings us things like typed properties and public, protected, private in particular.
@VudrokWolf
@VudrokWolf Жыл бұрын
Great video, have you tried Deno? It has support directly for Typescript, improved security, outputs a single executable, standard library, ES Modules, Decentralized, and more. I will browse your content you might already have something about Deno.
@user-vd3ph6zh8q
@user-vd3ph6zh8q 9 ай бұрын
I know this is old but I agree on the creating a snippet for it, one thing that’s pretty cool with JSdoc is you can use typescript for complex types. Also I updated my vscode settings to but grey background on my comments with white text to stand out
@raphaeld9270
@raphaeld9270 Жыл бұрын
9:55 Writing the business logic twice does look like describing your interface fully, like something like Haskell would ask of you. But I think it can depend on how far you want to go with Typescript.
@markusmachel397
@markusmachel397 Жыл бұрын
THIS CHANNEL IS GROWING BLAZINGLY FAST
@erickmoya1401
@erickmoya1401 Жыл бұрын
I think you mentioned it or someone else, but totally agree wirh: TS for applications. Check your options for libraries.
@TinBryn
@TinBryn Жыл бұрын
I'm fairly sure vscode highlights JSDoc type hints out of the box. So at least there is editor support in that regard.
@moodynoob
@moodynoob Жыл бұрын
I tried using JSDocs to introduce a legacy codebase to Typescript but the ergonomics of it weren't great, especially when you have to import a lot of types - I just ended up just using Typescript. Also advanced typescript syntax is a must for me - I know people keep saying application code doesn't need complex types, but I find the productivity and safety I get from encoding business rules in types to be something I really value.
@elmalleable
@elmalleable Жыл бұрын
a tool that helps you avoid small gotchas is a good too any bloody day but to each their headache
@crashingflamingo3028
@crashingflamingo3028 Жыл бұрын
What I found increasingly annoying about TypeScript is if you are using a library written in it and can't jump to the source of a definition since it is obfuscated by the .d.ts files.
@Pygmalos
@Pygmalos Жыл бұрын
I'm quite excited by stc (TypeScript type checker written in Rust.). I'd love to get your opinions about it.
@bahgah
@bahgah Жыл бұрын
Started using vim motions on vscode, still slow but starting to get in the groove.
@fennecbesixdouze1794
@fennecbesixdouze1794 Жыл бұрын
Not sure what you were thinking by objecting to the author calling typescript a static typing system. It is static typing. That's what it is. If you run a command and a program goes through your code and determines the possible types of every variable mentioned in the code at every place in the code, and ensures the code never uses a variable in a way that doesn't make sense given its possible types, that is static typing. If your program is running along, and it errors out because it was asked to dereference a null, that is runtime (i.e. dynamic) type checking. Static = before runtime, i.e. before your code goes out into production. Dynamic = during runtime, i.e. while your code is running in production. Static = your compiler or type-check program yells at you before you can check in your code. Dynamic = you get paged into work on the weekend.
@ssshenkie
@ssshenkie Жыл бұрын
Hey man I think you've addressed this already, but where can I find the full VODs (raw, unedited)? I like to re-watch you streams, because i'm busy with baby care, can't tune in live usually
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
react / reading stuff lands here coding lands on @TheVimeagen
@rban123
@rban123 9 ай бұрын
The one thing TS has over JS is the *required* transpilation step that enforces you cannot run your code if you do not run the static type analysis. JSDoc is just as capable (in theory) but you can also just bypass the static type checking and run your JS files directly
@rban123
@rban123 9 ай бұрын
This also comes with the downside of needing a transpilation step, but it does more strictly enforce the static type analysis
@pierreollivier1
@pierreollivier1 Жыл бұрын
I love helix, the key binding are very powerful, and Helix in it self, cut through the hustle of having to install 50 things like neovim, you get the basic out of the box, it's simple to change, keybindings, create languages specific, or project specific, formatting, etc. It's only lacking a better debugger integration to be truly amazing.
@marcomonsanto
@marcomonsanto Жыл бұрын
Thank you for all the content and learnings!! Would just point out that the polls seem very biased because of your audience, on the vim motions one, I only met 1 other person that used vim in the 6 companies I worked at. Most likely you are aware of that bias, but just wanted to point out with other perspective
@cloudpuncher4615
@cloudpuncher4615 Жыл бұрын
Just bring back ActionScript 3...
@dragenn
@dragenn Жыл бұрын
Back when programming was fun as hell!!
@Caboose2563
@Caboose2563 Жыл бұрын
Heresy
@ayangd1436
@ayangd1436 Жыл бұрын
Bro we got WebAssembly now.
@cloudpuncher4615
@cloudpuncher4615 Жыл бұрын
​@@ayangd1436 But who wants to learn Rust or C++.....
@crides0
@crides0 Жыл бұрын
@@cloudpuncher4615 just Google.. of course you don't have to write rust/c/c++
@AllanSavolainen
@AllanSavolainen 8 ай бұрын
Couldn't the noisyness be almost completely solved by editor extension that displays JSDoc as typescript? So you can write the function in Typescript-lite (only JSDoc subset) and the actual file will contain the JSDoc syntax but you edit it as Typescript?
@Oskar1000
@Oskar1000 Жыл бұрын
I feel like in production you would have a bundle and minification step anyways so its transpiled even if it is written in js no?
@juangiordana
@juangiordana Жыл бұрын
Please, add the links to the articles when publishing videos like these.
@SantiagoRojo
@SantiagoRojo Жыл бұрын
> I don't like comments, but I don't like transpiling Can we have a big amen over here!
@Slashx92
@Slashx92 Жыл бұрын
I use TS only for small react apps so I may be biased, but my components are accompanied by an interface for its props, and one or two interfaces for the data that is handles (that it may already be defined for another component), and that's it. Maybe a generic for some service's https response. I get that wizardy state where you think you have to define everything as a type, enum, class or interface. Generic wrappers and very complex stuff, but most of the time that's not even needed. At work we do automation of financial processes in js (the erp's scripting languaje, sorry) so there's no way we could be comfortable with transpilation, so I understand that side of the coin too
@DesTr069
@DesTr069 Жыл бұрын
I feel like if you’re writing JS for whatever reason, at the very least, you should use JSDocs for specifying what parameters your functions expect, as that can really help Intellisense and things like that
@niteshtudu6449
@niteshtudu6449 Жыл бұрын
quick question, can anyone please tell me what font does prime use?
@arcanernz
@arcanernz Жыл бұрын
I use JSDoc all the time in both Typescript and Javascript files and it's great. I've used JSDoc to import types into Javascript files when it wasn't worth it converting to Typescript. At least with Typescript you can enforce rules like no "any", but with just JSDoc it can be a struggle maintaining the correct types and have it not get stale over time.
@begris
@begris Жыл бұрын
This definitely has its use cases
@edward8064
@edward8064 Жыл бұрын
The chat protesting about the music is kinda funny lol
@marknefedov
@marknefedov Жыл бұрын
Unpopular opinion, chrome should expose directly skia api to wasm, so we finally can replace html and css ourself.
@dimaorols8143
@dimaorols8143 Жыл бұрын
Would comment type Node app run faster than Webpack's bundle? Used to avoid Babel for Node services and instead relied on require rather than sugar syntax.
@Ihsnetad
@Ihsnetad Жыл бұрын
The ideal situation for JS would be the approach of Python. Python supports types (type hints) but ignores them in runtime. You can run type check as a separate step, like linter.
@ichizos9615
@ichizos9615 Жыл бұрын
Great take, great article. In the end of the day it's always just a tool with its cons and pros, and how mindful you are when using it regardless if its JS, TS or Rust. Lets use some obscure/edgy analogy and say you are with you parent trying to cross the street. In Rust your parent will never stop holding your hand and instead of being hit by a car you will be slapped by the parent (compiler) for trying stupid things. In JS you can run freely but eventually you will be hit by an *undefined* car or you will end up in Area "5"+1. TypeScript just makes that happen less often if you are using it correctly. (Un)fortunately I've never had an opportunity to work with TypeScript due to platform (Salesforce) "lack of support" I am working in, but JSDocs still provides a great way of giving a general idea of methods in/outs, properties and at least enforce you to document your code on the high level.
@neociber24
@neociber24 Жыл бұрын
Part of me can understand if someone says that typescript slow you down but I had never experienced that. What actually slow me is when people use *any* assigning properties or calling methods do not exists anymore because they refactor some code months ago.
@NathanHedglin
@NathanHedglin Жыл бұрын
Weaker devs get slowed down because they barely understand code
@WhiteDoppler
@WhiteDoppler Жыл бұрын
Bread
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
winner
@TimothyWhiteheadzm
@TimothyWhiteheadzm Жыл бұрын
I use jsdoc a lot primarily because the projects I work on are already in javascript and I don't have the opportunity to convert them to typescript.
@drekforder2952
@drekforder2952 11 ай бұрын
I personally use TS in frameworks but JS + JSdoc for anything that would require me to have both the TS and JS files. I find JSdoc more readable when it comes to functions but it obviously has it's quirks such as defining your own types.
@SemiMono
@SemiMono Жыл бұрын
It seems like it's a good step up from straight javascript, but once you need complex types and named types, JSDoc would be far more painful than typescript. That said, transpiling is a pain. I get why some folks for some projects would opt out of it.
@alexeysamokhin9629
@alexeysamokhin9629 29 күн бұрын
I use JavaScript with JSDoc with ZERO (0) tooling for transformation. No transpilatuon, minification, packing etc. Works like a charm!
@lcarv20
@lcarv20 Жыл бұрын
This video ended unexpectedly, I was waiting for "the name ..." I even played the end twice.
@0marble8
@0marble8 Жыл бұрын
it got transpiled out of the video
@3ventic
@3ventic Жыл бұрын
The point about comments being faint in vscode was a weird one. At least for me all my jsdoc comments are highlighted with the usual type/variable/keyword colors, only the enclosing comment syntax having the usual faint coloring.
@felipedidio4698
@felipedidio4698 Жыл бұрын
I used to use JetBrains motions and I could do most things without using the mouse. I was converted to vim tho.
@mskiptr
@mskiptr Жыл бұрын
typecheckers are basically always compile-time
@JakeJJKs
@JakeJJKs Жыл бұрын
To Kendriel, I don't know if this reaches you, but I have a background in 3d animation/VFX as well, and I switched to software engineering at 32. Feel free to reach out if you wanna chat.
@BosonCollider
@BosonCollider Жыл бұрын
I feel that the other big advantage of this is if you have a build step that conflicts with typescript. Svelte did not have typescript support for a long time for example, while JSDoc would still have worked. Other examples include codebases like the preact source code, which are incredibly codegolfed for performance reasons so that they minify to the least amount of code. In those cases, you do not want typescript since you want to know exactly what javascript code you write.
@Sergeeeek
@Sergeeeek Жыл бұрын
You still know exactly what JavaScript you write with type script. Except for some features like enums, all the type annotations get erased.
@LongJourneys
@LongJourneys 6 ай бұрын
I used TS for a few projects a few years ago, but just like you mention, I hated basically writing everything twice. I went back to JSDoc.
@adambright5416
@adambright5416 11 ай бұрын
macos default hotkeys + macbook touchpad just works. idk. i don't need any "moar speed" cuz i'm not even that fast at thinking
@RandomGeometryDashStuff
@RandomGeometryDashStuff Жыл бұрын
00:51 aren't these things mutually exclusive (typescript is javascript with extra steps)?
@elmalleable
@elmalleable Жыл бұрын
this works and it is increble for old maintained projects but it is clunky in away and i would say dont do it unless you have to or you want to , the most painful parts are dealing with imports, i love the inline version of jsdocs but it adds extra to the code, typescript is minimal compares to jsdoc //ts const someVar: SomeType = someValue //jsdoc const /** @type {SomeType} = someValue or const someVar = someValue as SomType vs const someVar = /** @type {SomeType} */ (someValue) in most places you sure could use typescript in the anotations and it would work but the most challeging place is genericTypes say you are in react with .js const [someState] = useState(someValue) vs const [someState] = useState( /** @type {someType} */ (someValue) ) choose your headache, its all your pain
@complexity5545
@complexity5545 Жыл бұрын
This. This is why I watch the channel. Its not really for the information, but its for the refresh courses. I forgot JSDoc existed. I just did a grep search of all my code for the last 23 years. JSDoc was used in my depthsense 3D infrared scanning camera that I purchased in 2014. I still use it even though the company was bought out. Infrared cameras are way more expensive now than back in the day. JSDoc was used with a in-ram javascript database called taffydb. Thanks prime for making me revisit this. I now might take a deep dive into taffydb to see if I can further use it.
@KnThSelf2ThSelfBTrue
@KnThSelf2ThSelfBTrue Жыл бұрын
The "no-compile" thing is probably unrealistic for most JS-projects that aren't backend node only, because you're probably gonna bundle it, probably minify it, and maybe obfuscate it. At that point, do you want to write comments, or do you want to write in a syntax specifically for type annotations that is likely to eventually become part of the browser standard? It's crazy to me that Svelte of all things is moving to JSDoc, because they *definitely* have to compile their JS to other JS. Is the translation from TS to JS *really* that much of our compilation woes, and not like... obscure bugs in our minifiers and style components and gql tags and macros and and and?
@MaxHaydenChiz
@MaxHaydenChiz Жыл бұрын
Have any of the web devs here used Rescript extensively? Its type system is sound, unlike Typescript's; and it too compiles to normal Javascript. But I don't do webdev, so haven't had the opportunity to give it a try.
@koloml2
@koloml2 5 ай бұрын
I do like both of them. I have a lot of code written in plain JS and JSDoc is just saving my day. You can just put the little comment and your IDE will automagically catch this info and will gladly yell at you if you mess with types incorrectly.
@karixening
@karixening Жыл бұрын
I'd like to hear more about the distinction he's making here for typescript types. For the most part, aren't all type systems an abstractions striped away by the compiler at compile time? It's not like assembly uses the same type system as rust or c++.
@MaxHaydenChiz
@MaxHaydenChiz Жыл бұрын
In a language with a real type checker, the types do a sort of "worst case" approximation of what your code could do and thus rule out a lot of behavior as a result. The semantics of the language will depend on this and compilers will use that information when making decisions about how to put your code into effect. I don't use TypeScript, but I don't recall hearing about it using the type information to do an optimization pass. So it's more like a very thorough linter that uses a lot of the same constraint logic that a type checker would.
@karixening
@karixening Жыл бұрын
@@MaxHaydenChiz No optimization pass makes sense. TypeScript does often feel more like a linter at times since its built on top of and not into the language, but it ends up being the same developer experience imo, so it's a fine line.
@Davidlavieri
@Davidlavieri Жыл бұрын
Been web dev since 2012, never gave in to typescript, given how much work is needed to just get things done, before you take me for a dynamic Andy, my current background is primarily golang and second PHP (with strict typing)
@JuriBinturong
@JuriBinturong Жыл бұрын
TS is also annoying to troubleshoot
@jfftck
@jfftck Жыл бұрын
Syntax highlighting can be adapted to coloring the comments for typing.
@raiguard
@raiguard Жыл бұрын
I vastly prefer Kakoune motions, but unfortunately everything else that's keyboard-driven uses vim bindings, so I have to keep both in mind. It can get a bit irritating.
@stbuchok
@stbuchok 9 ай бұрын
Personally, I prefer JSDocs. I also write C# for my job. I always ask other developers "How would you feel if you had to write something in another language and compile it to C# (or choose your language of choice)". Why not just write it in C# in the first place? I find the headache of the extra toolchain worse than using JSDocs. Both aren't perfect, but I think JSDocs, for my case, is a better option. Ultimately, you need to write code that works, which one helps you do that is the one you should pick.
@AlLiberali
@AlLiberali 11 ай бұрын
I used to have phpdocs hint types in Eclipse PDT. It looks pretty normal to me
@cbaesemanai
@cbaesemanai 2 ай бұрын
We have been using dynamically typed languages for decades. The whole type religion is comical. I have yet to run into a production bug that would have been caught or caused by a lack of static typing.
@Xerofull
@Xerofull Жыл бұрын
this reminds me a lot of PHP Docs
@MrOnePieceRuffy
@MrOnePieceRuffy Жыл бұрын
With a good Code Editor, you could just hover over the symbol and you know the type defintions displayed in typescript. No need to read the comments (which are AI autogenerated) at any point. I code since 5 years professionally in Angular on the Frontend side, so it's TypeScript and I'm still not convinced to use it in private projects. And the biggest downside is that even `require` get's replaced and you are forced to use the ES import and get my JS modules from an "default" symbol out of another object for no reason. And another huge downside is, to even have access in my "playgrround scripts" to basic features like "Promise" I already need to have a package.json with an targeted ecmascript defined (or remembering an additional cl argument)
@JeSus-hl6zj
@JeSus-hl6zj Жыл бұрын
There's nothing wrong with "Typescript has static typing" as you say. It's literally what it is, static typing. The fact that it doesn't enforce any typechecking at runtime is irrelevant. Also, TS isn't just type hints nor a linter. It enforces types at compile-time, which I consider exceeds both type hints and linters.
@usamesavas9848
@usamesavas9848 Жыл бұрын
If you give your parameters clear and understandable names you won't need to constantly refer to JSDOC comments. This can help to reduce clutter in your code compared to using TypeScript types. What are your thought on this?
@davidlanda2324
@davidlanda2324 Жыл бұрын
This is a strategy what Go programmers follow. I thing you are right.
@AScribblingTurtle
@AScribblingTurtle Жыл бұрын
Comming from someone who has learned early what advantages writing PHPDoc has, I don't get why moving to JSDoc is so controversial for some people. Most IDEs, even Vim have a Doc generator (the one for vim called vim-doge btw.).
@hfspace
@hfspace Жыл бұрын
well, the thing people are questioning is not about moving to jsdoc but rather replacing typescript with jsdoc, since typescript allows for more type security than jsdoc but at a cost of more transpilation hassle
@AScribblingTurtle
@AScribblingTurtle Жыл бұрын
@@hfspace My problem with TS is honestly, that it is at times to "strict" and confusing. Here is a problem I encountered recently. " if(document.setAppBadge) ... " TS did not stop yelling at me, that "setAppBadge does not exist in Document". Even though the whole point of this damn line is to check if the damn thing exists in the first place. How am I supposed to check if something exists, If TS yells at me, that the check is checking a property that possibly does not exist?
@hfspace
@hfspace Жыл бұрын
@@AScribblingTurtle for that problem you normally should be able to implement a type guard that checks for the inclusion of this method and then the type checker should be able to realize that your code is fine. Just google typeguard + ts, you'll find it
@BigEyesLuigi1
@BigEyesLuigi1 Жыл бұрын
I’m learning Rust right now and it makes me hate TypeScript lol
@SeRoShadow
@SeRoShadow 4 ай бұрын
I dont get it. If u truly want to enforce a type of a varriable, create a custom function to typecheck the new value before assigning.
@adamwarvergeben
@adamwarvergeben Жыл бұрын
JSDoc with IDEA is great btw
@anon-fz2bo
@anon-fz2bo Жыл бұрын
Rust is good & easy, i wrote a script to parse image links from a response body firstly in Go then Rust & the rust implementation was +- 50 LOC, where as the go one was +- 100 LOC. The go one was done purely with the std lib, & for the rust one the only xtern crates i used were tokio, reqwest and regex. Rust had way more abstractions than the Go one even for primitives like strings, also the go one didnt work for every site 😂 still love em both tho.. damn this vids about typescript
@khai96x
@khai96x Жыл бұрын
Go provides the facade of simplicity. Rust exposes complexity. String types is one such example.
@adamtillou2689
@adamtillou2689 Жыл бұрын
Couldn't the problem of readability be fixed by a plugin which parses the jsdoc comments, and then display the type in the traditional typescript way after the variable name, in the same way that rust-analyzer displays inferred types (without actually inserting them)?
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
inlay hints is what that is called i think tsserver has to implement that
@jorgerojas4402
@jorgerojas4402 Жыл бұрын
@@ThePrimeTimeagen i think tsserver already support inlay hints, but i may be wrong.
@rashshawn779
@rashshawn779 Жыл бұрын
I dont get it. Why typescript dont do both.
@brunoais
@brunoais 11 ай бұрын
I like suggested typing just like python. Then build from there.
@adambickford8720
@adambickford8720 Жыл бұрын
Isn't Rust just a linter over machine code?
@AbdoAzmy2005
@AbdoAzmy2005 Жыл бұрын
Waiting for the special video at 69k subs 😂🎉
@o_corisco
@o_corisco Жыл бұрын
typescript is not a linter. The fact that typescript compiles to javascript does not invalidate the fact typescript is its own language. In fact one could make a typescropt compile to bytecode or even machine code. There are many languages that compile exclusively to javascript, such as Respcript, purescript, coffeescript, jscoq, ghcjs and etc... And that fact does not imply they are not their own languages. Typescript and Flowjs are fully fledged type systems for javascript.
@fernandogmar
@fernandogmar 5 ай бұрын
How about rescript?
@BenRangel
@BenRangel 5 ай бұрын
If all you're using jsdoc for is type info it's messy to have it as a comment! TS is more readable. However if you already use jsdoc for descriptions of all your functions - adding type info to jsdoc is a minor change. For a public lib jsdoc might be the way to go. But for an application codebase only used by your team of 4 devs, and you only need types, I think TS is more suited.
@allalphazerobeta8643
@allalphazerobeta8643 Жыл бұрын
If I were to use JSDoc, I'd want a syntax highlighter that highlighted the JSDoc "comments" differently than standard comments. And it be even better if it provided errors when I don't use them or screw them up.
@joshuacooks
@joshuacooks Жыл бұрын
VSCode has excellent syntax highlighting and copiolot can write most the JSDoc type definition for you, letting you just tweak the details. It provides warnings and all they typescript tooling features 1:1
@MiChEaLaDeNuGa-kx6iv
@MiChEaLaDeNuGa-kx6iv Жыл бұрын
TypeScript is a transpiler
@zirize
@zirize Жыл бұрын
If you want to know how lazy humans can be, try getting used to Vim motions. You'll soon find yourself annoyed at having to move your arm all the way to the arrow keys, and the mouse will feel like it's on Mars.
@nomadshiba
@nomadshiba Жыл бұрын
i think typescript and rust showed what types can do in a language and i think we are gonna get a new language that leverages that in a more elegant way in near future
@CapsAdmin
@CapsAdmin 10 ай бұрын
about the polls, it could also be that your audience is biased towards thinking about programming the same way you do
@jonathancrowder3424
@jonathancrowder3424 Жыл бұрын
Browsers just need to read TS natively, just ignoring the types
@wwjdtd1
@wwjdtd1 Жыл бұрын
Meanwhile Deno is happy running TS scripts with no extra work.
@joshuacooks
@joshuacooks Жыл бұрын
Deno still converts to javascript that runs on the V8 engine under the hood, no? google says yes, that is what it does. has that changed?
@wwjdtd1
@wwjdtd1 Жыл бұрын
@@joshuacooks yes it does, but that doesn't change the fact that you can run TS scripts without needing to manually transpire before running. Whereas node needs said extra step.
@YourComputer
@YourComputer 9 ай бұрын
You're going to be documenting anyway, and a lot of it will be in comments. There's no need to introduce the overhead of transpiling and code complexity and litter that TypeScript introduces, and minification will be removing comments anyway.
@KangoV
@KangoV 3 ай бұрын
I feel blessed in having avoided Javascript since its inception :)
Next Generation TypeScript | Prime Reacts
24:45
ThePrimeTime
Рет қаралды 96 М.
Prime Reacts: The Story of React
31:44
ThePrimeTime
Рет қаралды 123 М.
PINK STEERING STEERING CAR
00:31
Levsob
Рет қаралды 23 МЛН
ТАМАЕВ vs ВЕНГАЛБИ. Самая Быстрая BMW M5 vs CLS 63
1:15:39
Асхаб Тамаев
Рет қаралды 4,8 МЛН
Homemade Professional Spy Trick To Unlock A Phone 🔍
00:55
Crafty Champions
Рет қаралды 56 МЛН
CREATOR OF SVELTE From TS TO JSDoc??
19:53
ThePrimeTime
Рет қаралды 71 М.
HTMX Sucks
25:16
Theo - t3․gg
Рет қаралды 101 М.
A Jr Dev For Life?? | Prime Reacts
21:33
ThePrimeTime
Рет қаралды 278 М.
TypeScript Origins: The Documentary
1:21:36
OfferZen Origins
Рет қаралды 273 М.
What Does Your Editor Say About You | Prime Reacts
22:12
ThePrimeTime
Рет қаралды 266 М.
Can We Rank Developers ?
37:46
ThePrimeTime
Рет қаралды 83 М.
Scaling Up Prime Video | Prime Reacts
17:30
ThePrimeTime
Рет қаралды 99 М.
Why I'll always use Typescript over Javascript
18:17
Web Dev Cody
Рет қаралды 16 М.
Why I DONT LIKE Open Source Software w/ Jonathan Blow | Prime Reacts
24:41
Prime React: The Story of TypeScript
15:02
ThePrimeTime
Рет қаралды 61 М.
iPhone 12 socket cleaning #fixit
0:30
Tamar DB (mt)
Рет қаралды 49 МЛН
Hisense Official Flagship Store Hisense is the champion What is going on?
0:11
Special Effects Funny 44
Рет қаралды 1,3 МЛН
i like you subscriber ♥️♥️ #trending #iphone #apple #iphonefold
0:14
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 3,6 МЛН