fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

11K
active users

Nicholas C. Zakas

For humanfs, I'm using a kind of TypeScript-JavaScript hybrid setup for the first time, and I'm kind of loving it.

Interfaces are written in TypeScript files, while the functionality is written in JavaScript files with JSDoc type annotations.

One of my big complaints about TypeScript is when people mix type/interface definitions with functionality. When 75% of a file is long type definitions, it's maddening for me.

This way, I'm writing mostly clean JavaScript, but still get type checking.