aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-21Add docs for extending process.envGravatar Colin McDonnell 1-0/+25
2023-09-21On Linux, respect memory limit from cgroups (#5849)Gravatar Jarred Sumner 1-1/+1
* Implement `process.constrainedMemory()` * Add a comment * Handle max * Missing header * We can use WTF::ramSize now * Update WebKit * Update ZigGlobalObject.cpp * WebKit * :scissors: --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-21Don't await pluginsGravatar Jarred Sumner 1-1/+1
2023-09-20Update env docGravatar Colin McDonnell 1-1/+1
2023-09-20Clarify hot modeGravatar Colin McDonnell 1-10/+9
2023-09-20feat: switch disableTelemetry to bunfig (#5690)Gravatar Lucas Coratger 2-1/+9
* feat: switch disableTelemetry to bunfig * feat: zig fmt * revert: the env variable and invert the logic of telemetry --------- Co-authored-by: MrPalixir <73360179+MrPalixir@users.noreply.github.com>
2023-09-19Updated modules.md to address issue #5420 (#5456)Gravatar h2210316651 1-0/+11
* Update modules.md Updated docs to address `The ES modules aren't always asynchronous. #5420` Issue. - Included an elaborate explanation citing the difference between CommonJS and ES Modules, - Added a summary * Tweaks --------- Co-authored-by: Colin McDonnell <colinmcd94@gmail.com>
2023-09-19Doc updates (#5759)Gravatar Colin McDonnell 1-5/+10
* WIP * WIP
2023-09-19docs: update node compability (#5562)Gravatar Weyert de Boer 1-1/+1
2023-09-15docs(runtime): fix some typo. (#5451)Gravatar Zong 3-5/+8
2023-09-15feat(runtime): add `process.binding` `uv`/`natives`/`config` + make global ↵Gravatar dave caruso 1-1/+1
object properties lazy (#5355) * binding uv * we did that * some more bindings * fix doc * fix uv * yo * static hash table nonsense <3 * huge refactor to the global object i am not ready for merge conflicts * it works part 3 * lose --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-09-14Clean up bunfig.mdGravatar Colin McDonnell 1-19/+21
2023-09-14Mention dotenvGravatar Colin McDonnell 1-0/+4
2023-09-14Fix linksGravatar Colin McDonnell 2-2/+2
2023-09-14Rework bunfig docsGravatar Colin McDonnell 3-206/+496
2023-09-13Remove the ability to configure lockfile. (#5335)Gravatar Nathan Hammond 1-6/+0
2023-09-13Make TypeScript instructions easier to findGravatar Colin McDonnell 1-93/+16
2023-09-13modules documentation didn't have correct import example (#5225)Gravatar miccou 1-3/+3
2023-09-13More docs & helptext cleanup (#5229)Gravatar Colin McDonnell 1-3/+23
* wip * Flesh out resolution docs * Polish * More * WIP * WIP * WIP * Document --watch
2023-09-13chore(docs): include missing links to Node.js APIs (#5281)Gravatar Steven 1-2/+2
These links make it easy to click and jump to another section.
2023-09-13docs(runtime): fix plugins loader extensions typo (#5250)Gravatar Zong 1-1/+1
2023-09-13docs(runtime): fix jsx FragmentFactory output example (#5243)Gravatar Zong 1-1/+1
2023-09-12Various docs (#5201)Gravatar Colin McDonnell 1-3/+5
* Updates * Improve jest guide * Improve
2023-09-12Update hot.md (#4990)Gravatar Nazeel 1-1/+1
2023-09-12Add missing full stop on nodejs-apis.md (#5072)Gravatar Diogo Goncalves 1-5/+5
2023-09-12docs: fix typos (#5151)Gravatar Samuel Rigaud 1-1/+1
2023-09-12Clean up Modules docGravatar Colin McDonnell 1-66/+73
2023-09-11Fix punctuation (#4870)Gravatar Matthew Yu 1-2/+2
2023-09-10Update modules.md - Explain case-insensitivity (#4782)Gravatar Jeroen van Rensen 1-1/+1
2023-09-10docs: remove duplicate sentence from debugger (#4807)Gravatar Ed Knowles 1-1/+1
2023-09-09docs: fix wasi-js link (#4741)Gravatar Robert Soriano 2-2/+2
2023-09-08Add extension guideGravatar Colin McDonnell 1-1/+1
2023-09-08Remove await pluginGravatar Colin McDonnell 1-1/+1
2023-09-08Move "Importing CJS from CJS" back out of low-level details section (#4600)Gravatar Dan Fabulich 1-8/+6
This section appears to have been accidentally moved into the low-level details section in 5424ea3403df9cd4672290865f12b6f5b01cf2d0. This fixes the example in the low-level details section, because the "Importing CJS from CJS" section is not the example code that the low-level details section is intended to provide.
2023-09-07Doc updates for v1.0 (#4485)Gravatar Colin McDonnell 8-39/+29
* Remove v0.x messages * Add windows section to Installatino * update * update * Update * Comment out windows
2023-09-07Progress for Next.js (#4468)Gravatar dave caruso 1-5/+5
* L * ipc * asdfghjkl * dfghjk * it works! * types * patches for next.js * sdfghj * wsdfgn,./ * this * yolo * okay loser * asdfghjk * add some more APIs * MESS * sdfghjkl * remove native events from streams * stuff * remove lazy(primordials) test * debugging * okay * less fake extensions object * fix `Buffer.toString()` args logic * fix deserialize * make tests work * add test for `Buffer.toString` args * Update server.zig * remove test * update test * Update spawn-streaming-stdin.test.ts * fix linux build * Update fs.test.ts * cli message improvements * dfshaj * Fix fs.watch bug maybe? * remove --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
2023-09-06Update nodejs compat docs cp/cpSync/watchFile/unwatchFile (#4525)Gravatar Birk Skyum 1-2/+2
2023-09-04chore: fix typo (#4476)Gravatar Ai Hoshino 1-1/+1
Close: #4377
2023-08-25Automatically hot reload Bun.serve() (#4344)Gravatar Jarred Sumner 1-34/+4
* Automatically hot reload Bun.serve() * Update doc * Update example --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-24Use noEmitGravatar Colin McDonnell 1-2/+0
2023-08-23Add Debugger docs and a couple guides (#4281)Gravatar Colin McDonnell 1-0/+90
* Add debugger docs. Add guides. * Add files
2023-08-23Fix more types. (#4273)Gravatar xxxhussein 1-0/+2
2023-08-21Docs and types for v0.8.0 (#4199)Gravatar Colin McDonnell 1-1/+1
* Improve test documentation * Update nodejs compat docs with tty * Add debugger guide * Document Bun.inspect.custom, improve bun test nav * Address reviews * Update Bun.file types * Add Nuxt guide * Add tty types
2023-08-21Fix typoGravatar Colin McDonnell 1-1/+1
2023-08-15fix this page (#4172)Gravatar dave caruso 1-5/+5
2023-08-07Improve plugin docsGravatar Colin McDonnell 1-0/+276
2023-08-03Update Node.js compat docsGravatar Colin McDonnell 2-4/+4
2023-08-03Add type tests, update modules.mdGravatar Colin McDonnell 1-4/+7
2023-08-03More guides and fixing links (#3960)bun-v0.7.2Gravatar Colin McDonnell 1-1/+1
* More guides * WIP * Updates * Fix
2023-08-02Remove module and browser conditions (#3935)Gravatar dave caruso 1-2/+1
* fix astro compiler * clean this up * Update options.zig --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>