--- import type { IStory } from '../types.js'; import Show from './Show.astro'; interface Props { story: IStory; } const { story } = Astro.props; ---
  • {story.points} {story.title} ({story.domain}) {story.title}
    by {story.user}{' '} {story.time_ago}{' '}|{' '} {story.comments_count ? `${story.comments_count} comments` : 'discuss'} {story.time_ago}   {story.type}
  • RequestBodySize Unnamed repository; edit this file 'description' to name the repository.
    aboutsummaryrefslogtreecommitdiff
    path: root/bench/modules (unfollow)
    AgeCommit message (Collapse)AuthorFilesLines
    2022-11-07Handle threadsafety issueGravatar Jarred Sumner 1-3/+3
    2022-11-07Fix typo in Dockerfile (#1468)Gravatar Ikko Ashimine 1-1/+1
    specifc -> specific
    2022-11-07[JS Parser] Do not perform the visit pass if the parse pass had "tolerable" ↵Gravatar Jarred Sumner 1-0/+15
    errors
    2022-11-07Fix a couple failing testsGravatar Jarred Sumner 1-24/+21
    2022-11-07Maybe fix bug with onExit callback?Gravatar Jarred Sumner 4-37/+50
    2022-11-07Support unlimited arguments in process.nextTickGravatar Jarred Sumner 1-0/+13
    2022-11-07Fix missing error in `process.nextTick` and `queueMicrotask`Gravatar Jarred Sumner 3-43/+137
    2022-11-07[bun:test] Rejected promises should cause tests to failGravatar Jarred Sumner 1-0/+9
    2022-11-07[bun:test] Implement `done` callback with support for async functionsGravatar Jarred Sumner 7-19/+284
    2022-11-07[bun:test] Implement `expect` in faster Zig bindingsGravatar Jarred Sumner 12-2742/+4175
    2022-11-07[bindings generator] Support cached values that do not correspond to ↵Gravatar Jarred Sumner 2-80/+144
    properties and support call() functions
    2022-11-07Handle types which do not support getting an objectGravatar Jarred Sumner 1-1/+52
    2022-11-07Fix UAF in canaryGravatar Jarred Sumner 5-81/+100
    2022-11-06BumpGravatar Jarred Sumner 2-1/+3
    2022-11-06Automatically install npm packages when running a script in Bun's runtime ↵Gravatar Jarred Sumner 35-1786/+5529
    (#1459) * Update bundler.zig * WIP * Update README.md * Update README.md * wip * Support running scripts without package.json * Add `--no-auto-install` and `--prefer-offline` flags * WIP * wip * Update headers-handwritten.h * WIP * Build fixes * Fix UAF * Update install.zig * Must call .allocate() * Micro-optimization: only call .timestamp() once per tick when installing packages * Support progress bar * Extend the timestamp for package staleness checks to 1 day * Add `--prefer-latest`, `-i` CLI Flags * Fix crash * Support line text manually being set on an Error instance * Add a few more fields for error messages * Fix bug when counting 8 character strings in string builder * Implement error handling for automatic package installs! * Fix crash * Make it say module when there's a slash * Update module_loader.zig * Ban dependency versions in import specifiers when a package.json is present * Remove unused field * Update README.md * Update README.md * Update README.md * Update README.md Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
    2022-11-06chore: remove space lookalike (#1465)Gravatar Carter Snook 2-2/+2
    2022-11-06Fixes https://github.com/oven-sh/bun/issues/1451Gravatar Jarred Sumner 1-1/+7
    2022-11-06Add way to explicitly coercion object to int32Gravatar Jarred Sumner 11-18/+55
    2022-11-06Fix symbol error with `make headers`Gravatar Jarred Sumner 1-0/+3
    cc @lawrencecchen
    2022-11-06Fix bug when passing ABI Types as integersGravatar Jarred Sumner 1-3/+5
    2022-11-06Fixes https://github.com/oven-sh/bun/issues/1462Gravatar Jarred Sumner 2-4/+28
    2022-11-06UndoGravatar Jarred Sumner 4-59/+12
    2022-11-06Update action.ymlGravatar Jarred Sumner 1-1/+0
    2022-11-06PrettierGravatar Jarred Sumner 1-1/+1
    2022-11-06Pass `tar -C`Gravatar Jarred Sumner 4-6/+53
    2022-11-06[TypeScript] Fix `export = value`Gravatar Jarred Sumner 2-0/+5
    2022-11-06Fix artifact name, use tarballGravatar Jarred Sumner 3-12/+11
    2022-11-06Try tarballGravatar Jarred Sumner 1-4/+4
    2022-11-06Try againGravatar Jarred Sumner 4-0/+4
    2022-11-06Node12 is deprecatedGravatar Jarred Sumner 4-28/+32
    2022-11-06feat(child_process): add node:child_process polyfill (#1424)Gravatar Derrick Farris 4-3/+2756
    * feat(child_process): beginning of child_process, add ChildProcess and spawn base case * fix(child_process): remove invalid single arg array syntax (thanks Copilot) * refactor(child_process): unhack Readable.on, move stuff into node:stream * feat(child_process): add more params for spawn, refactor, add fromWeb() to Readable * feat(child_process): finish rest of exports (minus fork), refactor, add tests * cleanup(streams): remove a bunch of unnecessary stuff * cleanup(child_process): remove dead refs * fix(child_process): fix stdio * fix(child_process): change stdio to bunStdio * test(child_process): uncomment timeout test * test(child_process): fix hanging tests * test(child_process): remove stray console.log * test(child_process): fix cwd test for linux * refactor(child_process): divide paths for encoded vs raw execFile stdio * fix(child_process): fix logic for execFile slow path
    2022-11-06fix(subprocess): fix typo in spawnSync (#1464)Gravatar Derrick Farris 1-2/+2
    2022-11-05Fix fetch api to accept stringifier object (#1460)Gravatar zhiyuan 2-11/+25
    * fetch accept stringifier object * test: update fetch params tests
    2022-11-03Fix crash in setTimeout/setIntervalGravatar Jarred Sumner 1-0/+5
    2022-11-03Fix incorrect exit codeGravatar Jarred Sumner 1-9/+15
    2022-11-03Fix crash when reading promise value wihtout checking if nullGravatar Jarred Sumner 1-0/+1
    2022-11-03Fix `which` not handling absolute paths to a binGravatar Jarred Sumner 1-3/+20
    This code has not been tested.
    2022-11-03Fix `cmd not found in $PATH` printing raw structGravatar Jarred Sumner 1-1/+1
    2022-11-03Delete unused fileGravatar Jarred Sumner 1-97/+0
    2022-11-03Add minified prod build of react-dom/server.bun (#1458)Gravatar Colin McDonnell 2-6819/+138
    Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
    2022-11-03chore: remove unecessary files (#1457)Gravatar Hyro 2-118/+0
    * Delete labeler.yml * Delete labels.yml
    2022-11-03Introduce `import.meta.primordials` for builtin JSGravatar Jarred Sumner 5-3/+95
    the `import.meta` object in Bun now has a `primordials` object which makes a handful of globals safe for access. Inside of bun: or node: modules, it is a special object (ownKeys is not implemented, so Object.keys() wont work on it) - Array - String - `isPromise` - `isCallable` - `isConstructable` - `tryGetById(foo, "bar')` which is like foo?.bar - `arrayPush` which is like `Array.prototype.push` - `Bun` - `isAbortSignal` cc @ThatOneBro @lawrencecchen