MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add empty undici example

+16
examples/npm/undici/ant.lockb

This is a binary file and will not be displayed.

+3
examples/npm/undici/index.js
··· 1 + import { install } from 'undici'; 2 + 3 + install();
+13
examples/npm/undici/package.json
··· 1 + { 2 + "name": "undici", 3 + "version": "1.0.0", 4 + "type": "module", 5 + "main": "index.js", 6 + "scripts": { 7 + "start": "ant index.js" 8 + }, 9 + "dependencies": { 10 + "undici": "^7.24.7" 11 + }, 12 + "devDependencies": {} 13 + }