Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-02 | chore: remove std directory (#9361) | Casper Beyer | |
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now. | |||
2021-01-25 | feat(std/node): Add support for process.on("exit") (#8940) | Steven Guerrero | |
This commit adds support for process.on("exit") by appending a listener to the unload event. Luckily, unload works pretty much the same as on("exit") since it won't schedule any additional work in the even loop either. This commit also solves an error in the Node implementation, since "process.argv" didn't contained the main module route as it was supposed to. | |||
2021-01-10 | update copyright to 2021 (#9081) | Ryan Dahl | |
2020-11-16 | feat(std/node): implement process.nextTick (#8386) | Steven Guerrero | |
2020-11-07 | fix(std/node): only define Node.js globals when loading std/node/global (#8281) | Guy Bedford | |
2020-11-03 | build: migrate to dlint (#8176) | Bartek Iwańczuk | |
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code. | |||
2020-09-21 | chore: add copyright (#7593) | tokiedokie | |
2020-09-17 | feat(std/node) stub out process.stdin, stdout, stderr (#7184) | Jarrett Helton | |
2020-08-24 | feat: update to TypeScript 4.0 (#6514) | Kitson Kelly | |
2020-06-25 | fix(std/node/process): env, argv exports (#6455) | Benjamin Lupton | |
The promise approach still required permissions to be specified at initialisation, rather than at request. Using a Proxy instance solves this permission issue. The Proxy instance approach also eliminates the need for the await. Achieving direct compatibility with Node.js. /ref pr #6392 /ref commit d16337cc9c59732fe81655482e08b72d844472e6 | |||
2020-06-23 | fix(std/node): global process should usable (#6392) | Benjamin Lupton | |
2020-06-12 | refactor: Don't destructure the Deno namespace (#6268) | Nayeem Rahman | |
2020-04-30 | std/node: toString for globals (#5013) | Nikolai Vavilov | |
2020-04-30 | std/node: make process global (#4985) | Nikolai Vavilov | |
2020-04-29 | BREAKING: Map-like interface for Deno.env (#4942) | Valentin Anger | |
2020-04-28 | BREAKING: Use LLVM target triple for Deno.build (#4948) | Ryan Dahl | |
Deno.build.os values have changed to correspond to standard LLVM target triples "win" -> "windows" "mac" -> "darwin" | |||
2020-03-28 | Update to Prettier 2 and use ES Private Fields (#4498) | Kitson Kelly | |
2019-11-18 | feat: std/node/process (#3368) | Rafał Pocztarski | |
2019-10-09 | remove std submodule | Ryan Dahl | |
2019-10-04 | Move deno_std to a more convenient location. (#3057) | Ryan Dahl | |
js/deps/https/deno.land/std -> js/std |