summaryrefslogtreecommitdiff
path: root/src/node_native_module.cc
Commit message (Expand)AuthorAgeFilesLines
* src: print native module id on native module not foundlegendecas2021-09-041-1/+4
* debugger: validate sec-websocket-accept response headerChris Opperwall2021-09-041-0/+1
* build: fix building with external builtinsMomtchil Momtchev2021-07-201-0/+1
* src: throw error in LoadBuiltinModuleSource when reading failsJoyee Cheung2021-07-201-25/+9
* module: named exports for CJS via static analysisGuy Bedford2020-09-291-1/+5
* src: reduce scope of code cache mutexAnna Henningsen2020-06-301-4/+12
* src: remove unused using declarationsDaniel Bevenius2020-06-301-3/+0
* src: use MaybeLocal.ToLocal instead of IsEmptyDaniel Bevenius2020-06-181-2/+2
* src: add LoadEnvironment() variant taking a stringAnna Henningsen2020-03-211-0/+8
* src: prefer OnScopeLeave over shared_ptr<void>Anna Henningsen2020-03-201-1/+1
* build: enable loading internal modules from diskGus Caplan2020-01-311-3/+62
* wasi: require CLI flag to require() wasi modulecjihrig2019-12-171-0/+1
* src: make a Environment-independent proxy class for NativeModuleLoaderJoyee Cheung2019-04-131-246/+73
* src: replace FromJust() with Check() when possibleSam Roberts2019-04-121-6/+6
* src: port bootstrap/cache.js to C++Joyee Cheung2019-04-041-0/+114
* src: apply clang-tidy rule modernize-use-emplacegengjiawen2019-03-211-1/+1
* src: remove unused variable in node_native_module.ccgengjiawen2019-03-061-1/+0
* src: allocate Buffer memory using ArrayBuffer allocatorAnna Henningsen2019-02-251-8/+2
* src: use NULL check macros to check nullptrZYSzys2019-02-071-1/+1
* lib: save primordials during bootstrap and use it in builtinsJoyee Cheung2019-02-021-1/+2
* process: split execution into main scriptsJoyee Cheung2019-01-301-20/+0
* vm: mark scripts as shareable cross-originJeremy Apthorp2019-01-291-1/+1
* src: reduce includes of node_internals.hJoyee Cheung2019-01-211-1/+0
* src: remove unused variablecjihrig2019-01-151-1/+0
* process: allow StartExecution() to take a main script IDJoyee Cheung2019-01-161-0/+4
* src: simplify NativeModule caching and remove redundant dataJoyee Cheung2019-01-121-5/+15
* src: always compile and store code cache for native modulesJoyee Cheung2018-12-181-90/+85
* src: remove code cache integrity checkJoyee Cheung2018-12-181-41/+0
* process: specialize building and storage of process.configJoyee Cheung2018-12-111-7/+41
* src: fix type mismatch warnings from missing privSam Roberts2018-12-031-1/+2
* src: use NativeModuleLoader to compile per_context.jsJoyee Cheung2018-11-281-47/+60
* src: use STL containers instead of v8 values for static module dataJoyee Cheung2018-11-201-162/+162
* src: compile native modules and their code cache in C++Joyee Cheung2018-11-151-0/+326