Тёмный

TS vs JSDoc | Prime Reacts 

ThePrimeTime
Подписаться 461 тыс.
Просмотров 88 тыс.
50% 1

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

Наука

Опубликовано:

 

14 май 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 258   
@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.
@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
@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 ..........
@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)
@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.
@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)
@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 */
@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 :)
@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!
@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.
@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
@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.
@erickmoya1401
@erickmoya1401 Год назад
I think you mentioned it or someone else, but totally agree wirh: TS for applications. Check your options for libraries.
@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.
@fearclan5913
@fearclan5913 Год назад
AWWWWWW HE SAID AT THE FIRST 20 sec "Hi youtube" thats a honor
@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.
@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
@user-vd3ph6zh8q
@user-vd3ph6zh8q 8 месяцев назад
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
@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.
@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.
@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.
@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.
@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.
@AllanSavolainen
@AllanSavolainen 7 месяцев назад
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?
@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
@Tony-dp1rl
@Tony-dp1rl 9 месяцев назад
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.
@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
@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
@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.
@rban123
@rban123 8 месяцев назад
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 8 месяцев назад
This also comes with the downside of needing a transpilation step, but it does more strictly enforce the static type analysis
@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
@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
@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.
@edward8064
@edward8064 Год назад
The chat protesting about the music is kinda funny lol
@begris
@begris Год назад
This definitely has its use cases
@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++
@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.
@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
@marknefedov
@marknefedov Год назад
Unpopular opinion, chrome should expose directly skia api to wasm, so we finally can replace html and css ourself.
@felipedidio4698
@felipedidio4698 Год назад
I used to use JetBrains motions and I could do most things without using the mouse. I was converted to vim tho.
@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.
@adambright5416
@adambright5416 10 месяцев назад
macos default hotkeys + macbook touchpad just works. idk. i don't need any "moar speed" cuz i'm not even that fast at thinking
@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.
@niteshtudu6449
@niteshtudu6449 Год назад
quick question, can anyone please tell me what font does prime use?
@jfftck
@jfftck Год назад
Syntax highlighting can be adapted to coloring the comments for typing.
@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.
@mskiptr
@mskiptr Год назад
typecheckers are basically always compile-time
@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.
@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.
@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.
@Xerofull
@Xerofull Год назад
this reminds me a lot of PHP Docs
@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.
@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.
@BigEyesLuigi1
@BigEyesLuigi1 Год назад
I’m learning Rust right now and it makes me hate TypeScript lol
@AlLiberali
@AlLiberali 11 месяцев назад
I used to have phpdocs hint types in Eclipse PDT. It looks pretty normal to me
@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.
@AbdoAzmy2005
@AbdoAzmy2005 Год назад
Waiting for the special video at 69k subs 😂🎉
@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.
@RandomGeometryDashStuff
@RandomGeometryDashStuff Год назад
00:51 aren't these things mutually exclusive (typescript is javascript with extra steps)?
@WhiteDoppler
@WhiteDoppler Год назад
Bread
@ThePrimeTimeagen
@ThePrimeTimeagen Год назад
winner
@igeoerre
@igeoerre 7 месяцев назад
I'm right now watching videos on how to use JSDocs so I don't have to add TypeScript to JavaScript code that is already difficult to understand. 😅😢
@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
@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.
@alexeysamokhin9629
@alexeysamokhin9629 13 дней назад
I use JavaScript with JSDoc with ZERO (0) tooling for transformation. No transpilatuon, minification, packing etc. Works like a charm!
@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.
@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.
@koloml2
@koloml2 4 месяца назад
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.
@brunoais
@brunoais 11 месяцев назад
I like suggested typing just like python. Then build from there.
@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.
@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.
@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
@adamwarvergeben
@adamwarvergeben Год назад
JSDoc with IDEA is great btw
@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?
@jonathancrowder3424
@jonathancrowder3424 Год назад
Browsers just need to read TS natively, just ignoring the types
@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
@SeRoShadow
@SeRoShadow 3 месяца назад
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.
@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
@quintencabo
@quintencabo Год назад
Just do both, you should add a comment anyways explaining what a function does so you might as well add the input types and stuff
@axMf3qTI
@axMf3qTI 6 месяцев назад
he's always going on about music but I never hear music.
@adambickford8720
@adambickford8720 Год назад
Isn't Rust just a linter over machine code?
@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)
@rashshawn779
@rashshawn779 Год назад
I dont get it. Why typescript dont do both.
@leonasdev
@leonasdev Год назад
JSDoc is like lua's annotation of type right?
@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.
@fernandogmar
@fernandogmar 5 месяцев назад
How about rescript?
@kwinso
@kwinso Год назад
Hi, Prime
@ThePrimeTimeagen
@ThePrimeTimeagen Год назад
hi
@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.
@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.
@JLarky
@JLarky Год назад
I try it every year and it doesn't work enough for me yet :) but I agree, the best use case is shebanged scripts
@CapsAdmin
@CapsAdmin 9 месяцев назад
about the polls, it could also be that your audience is biased towards thinking about programming the same way you do
@marcusrehn6915
@marcusrehn6915 Год назад
Moving to jsdoc is indeed the craziest move that I have heard in a long time.
@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
Далее
Prime Reacts: The Story of React
31:44
Просмотров 122 тыс.
Looking Into a REAL Codebase - Beyond the Basics
10:12
We Got Expelled From Scholl After This...
00:10
Просмотров 4,8 млн
20 часов ради СТРАДАНИЯ - Ultrakill
26:40
Дима сделал мне сюрприз!😭
01:01
Просмотров 766 тыс.
Scaling Up Prime Video | Prime Reacts
17:30
Просмотров 98 тыс.
Next Generation TypeScript | Prime Reacts
24:45
Просмотров 94 тыс.
Is clean code a LIE? Primeagen x Casey Muratori say so
14:15
TypeScript Origins: The Documentary
1:21:36
Просмотров 270 тыс.
The Perfect Programming Language
23:50
Просмотров 342 тыс.
JavaScript Framework Tier List
40:57
Просмотров 291 тыс.
The Stockholm Syndrome of SQL | Prime Reacts
31:21
Просмотров 124 тыс.
Clean Code : Horrible Performance | Full Interview
47:13
#miniphone
0:16
Просмотров 1,9 млн