I hereby claim:
- I am nickserv on github.
- I am nicolasmccurdy (https://keybase.io/nicolasmccurdy) on keybase.
- I have a public key ASCMpqpV1JY9do3WmSZ_1osCTlXjOQmwSe0cjbHecpCIIwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# JavaScript | |
**/bun.lock | |
**/package-lock.json | |
**/pnpm-lock.yaml | |
**/yarn.lock | |
# Ruby | |
**/Gemfile.lock |
export default function App() { | |
return ( | |
<> | |
<script> | |
{ | |
module { | |
import analytics from "..."; // Import an analytics library, possibly from a CDN | |
// Configure analytics library | |
} | |
} |
"use server"; | |
export async function hello() { | |
return <h1>Hello, world!</h1>; | |
} |
async function Row({ chunk }) { | |
const { next, value, done } = await chunk | |
if (done) return null | |
return ( | |
<> | |
{value} | |
<Row chunk={next} /> | |
</> | |
) | |
} |
To consistently use Baseline browsers (Chrome, Edge, Firefox, Safari) with your web toolchain, add these to your Browserslist:
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari major versions"
- ts-node --esm [path] | |
+ node --loader ts-node/esm [path] |
interface Parser<T> { | |
parse(text: string): T | |
stringify(value: T): string | |
} |
https://gist.githubusercontent.com/nickmccurdy/177e52afe1d5b4647e6b72705f5a652c/raw/no-verified.txt