-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Track: Typescript types support #2945
Comments
where the branch of it? or it not yet started? |
not started yet, i will start in the next couple of weeks |
Is it possible to externally contribute to the Typescript support effort? |
@dapplion sure just pick a repo in the list and start adding JSDocs types to the top level api and mention me in the PR |
Thanks! Is it on the roadmap to migrate to Typescript? |
no |
I've spend some time trying to add jsdoc type annotations to the https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs and encountered issue that I am not sure is possible to entype. From what I can tell js-ipfs/packages/ipfs/src/index.js Line 3 in 4e2aa83
js-ipfs/packages/ipfs/src/core/index.js Lines 44 to 48 in 4e2aa83
Where js-ipfs/packages/ipfs/src/core/api-manager.js Lines 7 to 12 in 4e2aa83
js-ipfs/packages/ipfs/src/core/api-manager.js Lines 15 to 22 in 4e2aa83
So as far as I can tell js-ipfs/packages/ipfs/src/core/index.js Lines 44 to 48 in 4e2aa83
I do not believe that can be entyped because number of types that need to be inferred is not bound. That is to say if e.g. update was taking bound number of APIs it merged together it would have being doable, which is different from arbitrary number of api objects (values of the passed dict) that are merged. For example this is how TS entypes interface ObjectConstructor {
/**
* Copy the values of all of the enumerable own properties from one or more source objects to a
* target object. Returns the target object.
* @param target The target object to copy to.
* @param source The source object from which to copy properties.
*/
assign<T, U>(target: T, source: U): T & U;
/**
* Copy the values of all of the enumerable own properties from one or more source objects to a
* target object. Returns the target object.
* @param target The target object to copy to.
* @param source1 The first source object from which to copy properties.
* @param source2 The second source object from which to copy properties.
*/
assign<T, U, V>(target: T, source1: U, source2: V): T & U & V;
/**
* Copy the values of all of the enumerable own properties from one or more source objects to a
* target object. Returns the target object.
* @param target The target object to copy to.
* @param source1 The first source object from which to copy properties.
* @param source2 The second source object from which to copy properties.
* @param source3 The third source object from which to copy properties.
*/
assign<T, U, V, W>(target: T, source1: U, source2: V, source3: W): T & U & V & W;
/**
* Copy the values of all of the enumerable own properties from one or more source objects to a
* target object. Returns the target object.
* @param target The target object to copy to.
* @param sources One or more source objects from which to copy properties
*/
assign(target: object, ...sources: any[]): any;
} Note that unlike array passing dict is more complicated as they come with names and I don't believe can be entyped as fixed size structs without knowing names so I don't think using trick used in |
@hugomrdias Is there a strong reason or ROI justification in the decision to not consider Typescript over just JSDocs types? |
FWIW pulling the proxy voodoo out is on the list: #2762 - though more because it's complicated than because it's slow. It's important to not jump to conclusions about performance improvements and only optimise what we can prove is a bottleneck. So far the API manager/proxy piece has not shown itself to be a bottleneck.
We want the tooling support & static analysis goodies that TS enables but there's not a lot of appetite for a ground-up rewrite in another language, particularly at the expense of items in the backlog perceived to be of higher value to the project like connectivity improvements, better content resolution, feature parity with go-IPFS, etc. It also raises the bar to entry for contributions - e.g. every TS developer knows JS, but not every JS developer knows TS. We don't want to have external definitions as it's too easy for them to become out of date when non-TS developers submit PRs, so this endeavour is to have TS types in JSDoc style comments for our external APIs only. |
@achingbrain I agree with your point, thanks for the explanation! |
But how many TS developers resigned from contributing because they have to read JS without types. And also how many resigned from using the library because of missing types. I don't think that'll be a big problem for JS developers to understand what's going on in Typescript. |
@gbaranski I do not believe discussion about migration to TS is going to be productive, even if doing it had no tradeoffs at all (which it does). What we have been doing however is gradually integrating TS via JSDoc syntax and generating typedefs from it. That way we are starting to take some advantage of type checker, more and more code has types (admittedly in less convenient form) and TS projects can start getting type inference when working with IPFS. If you feel passionate about improving experience through TS I would encourage you to help (if you can) with our ongoing entypement efforts, there is still planty of surface to cover and plenty of @ts-ignores to address. I believe that is more effective way to address most pain points in regards to TS+IPFS |
I've added my own types for my libp2p project right here. But if You want to generate typings using JSDoc, that might be better approach that mine(rewriting API docs which seem outdated). How I can contribute? |
@gbaranski given that you have wrote tsdefs for libp2p this might be a good place to start libp2p/js-libp2p#830 which contains bunch of pointers to bunch of followup work that needs to be done that was chosen to not include with initial push. If you want to take over this libp2p/js-libp2p#831 that would be a great help as well. As per ipfs/aegir#689 (comment) we would like to replace uses of stock event emitter with a typed one https://www.npmjs.com/package/typed-events.ts If you do end up pursuing things on libp2p end, I would suggest to coordinate with @vasco-santos who is leading the entyping efforts there to make sure we don't step on each others toes. On the js-ipfs end there is planty of todo as well, I don't have a list handy here but here are few general groups of work:
If you do decide to do some work on js-ipfs end (or it's deps) I would highly encourage to read this #3413 as we have decided to Also don't hesitate to reach out to myself. |
Long term, say 1 or 2 years, will you re-consider the position of not adopting Typescript? Major projects in the web3 space actively used by DApp developers are already (or in progress) Typescript
If this trend continues how would it affect IPFS adoption in JS projects if it remains the only one without Typescript (or really good types #3413 (comment))? |
Please see the final paragraph here: #2945 (comment) I don't think it needs to be all-or-nothing, since:
This is what we're targeting here. If you'd like to help out with this effort, @Gozala has linked to plenty of small-ish pieces that need work, pitching in would be very much appreciated. |
Is JSDocs able (or fully-featured enough) to provide the same very rich types as "Typescript types"? I would be very happy to contribute to a Typescript effort, but developing JSDocs is not fun at all for me personally. However, I agree with prioritizing core functionality development over types. |
@dapplion yes it is and not all types need to be written in jsdocs and most of them aren't already, please check the description on this issue and the PRs/links referenced there for more info. |
For anyone interested in helping out moving this forward, we have decided to slightly change our current "top to bottom" strategy to "bottom upwards" strategy , meaning focusing our efforts on entyping dependencies used by js-ipfs first. This was motivated by ripple effects that added types to dependencies causes. So if you were thinking of helping out best thing is to pick one of the libraries from the list that @hugomrdias will post here (pardon my gentle nudge 😉). |
the list has been in the OP for quite some time now |
This was shipped in If there are further issues with the types, new issues can be opened and dealt with case by case. Thanks everyone, amazing work! |
TypeScript support for `ipfs` and `ipfs-http-client` Refs: #2945 Refs: #1166 Co-authored-by: Irakli Gozalishvili <[email protected]> Co-authored-by: Alex Potsides <[email protected]>
TypeScript support for `ipfs` and `ipfs-http-client` Refs: #2945 Refs: #1166 Co-authored-by: Irakli Gozalishvili <[email protected]> Co-authored-by: Alex Potsides <[email protected]>
We will use JSDoc to declare types for the top level API first and internally we will add types incrementally where we feel it adds value.
A TS config will be added to the repo to enable type declaration generation from JSDoc comments.
Type declaration tests will be added as we see fit and we will add a ts type check job to our CI.
Repo track list
Done = ✅
In Progress = 🚧
TODO = ⛔
Documentation
https://github.com/ipfs/aegir/blob/master/md/ts-jsdoc.md
Improvement issues
ipfs/aegir#619 (comment)
External issues to track
TypeStrong/typedoc#1248 (comment)
microsoft/TypeScript#41672
The text was updated successfully, but these errors were encountered: