HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jcbhmr

857 karmajoined 3 года назад
https://jcbhmr.com

Submissions

Node.js platform/arch possible values

jcbhmr.com
3 points·by jcbhmr·3 дня назад·0 comments

HTTP API Design Guide

geemus.gitbooks.io
1 points·by jcbhmr·6 дней назад·0 comments

ArkType: The Parse-Don't-Validate Sequel I Didn't Know I Needed

cekrem.github.io
3 points·by jcbhmr·27 дней назад·0 comments

TypeScript checker and language service written in Rust

tsz.dev
8 points·by jcbhmr·2 месяца назад·0 comments

Crates.io Trusted Publishing

crates.io
1 points·by jcbhmr·3 месяца назад·0 comments

'"one" | "two" | string' autocomplete TypeScript trick

jcbhmr.com
3 points·by jcbhmr·3 месяца назад·0 comments

Chrome Platform Status

chromestatus.com
1 points·by jcbhmr·3 месяца назад·0 comments

Y Combinator's CEO says he ships 37,000 lines of AI code per day

fastcompany.com
14 points·by jcbhmr·3 месяца назад·20 comments

Proposal for adding a useful pipe operator to JavaScript

github.com
1 points·by jcbhmr·3 месяца назад·0 comments

Mitata: Benchmark tooling that loves you

github.com
2 points·by jcbhmr·4 месяца назад·0 comments

JavaScript's Trademark Problem (2025)

2ality.com
1 points·by jcbhmr·4 месяца назад·0 comments

The /ai 'Manifesto'

bydamo.la
1 points·by jcbhmr·4 месяца назад·0 comments

Gofumpt: A Stricter Gofmt

github.com
1 points·by jcbhmr·5 месяцев назад·0 comments

XGo: = C * Go * Python * JavaScript and Scratch

xgo.dev
2 points·by jcbhmr·6 месяцев назад·0 comments

: The Fenced Frame element

developer.mozilla.org
9 points·by jcbhmr·6 месяцев назад·0 comments

Node.js platform/arch possible values

jcbhmr.com
1 points·by jcbhmr·7 месяцев назад·0 comments

Deno Sandboxes

deno.com
4 points·by jcbhmr·7 месяцев назад·0 comments

Possible platform/arch names in Deno.build and node:process

jcbhmr.com
1 points·by jcbhmr·7 месяцев назад·0 comments

JSDoc types are not TypeScript types

jcbhmr.com
5 points·by jcbhmr·7 месяцев назад·0 comments

Wizard Zines

wizardzines.com
3 points·by jcbhmr·7 месяцев назад·0 comments

comments

jcbhmr
·7 месяцев назад·discuss
JSDoc works great for buildless application setups! One downside is that if you publish a library to npm you still need a build step to generate .d.ts files from your JSDoc type annotations so that npm shows a "TS" badge on the npm package page. This also seems to apply to VSCode's intellisense which keeps trying to poke you to "try to install @types/jsdoc-typed-package to get type information". Other JS ecosystem tooling also doesn't seem to process JSDoc types at all such as jsdocs.io or tsdocs.dev. So for libraries we're stuck with .d.ts generation via "tsc --allowJs --checkJs --declaration ..." even if it's all JS.

npm displays packages with bundled TypeScript declarations https://github.blog/changelog/2020-12-16-npm-displays-packag...

JSDoc-typed node modules require special configuration in consumers to be useful https://github.com/microsoft/TypeScript/issues/19145