summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-27gitignore vim .swp filesRyan Dahl
2018-11-27Don't use use_custom_libcxx=false on travis.Ryan Dahl
2018-11-27add test for Buffer edge caseBartek Iwańczuk
2018-11-27Add update to changelog (#1227)Ryan Dahl
2018-11-27Don't use snapshot for src/isolate.rs tests.Ryan Dahl
2018-11-27Disable flaky fetch tests.Ryan Dahl
2018-11-26Typo fixes in Docs.mdThomas Beirne
Just fixing a couple minor typos - formates -> formats - configuation -> configuration
2018-11-23Revert "Use include_bytes! instead of incbin. (#1182)"Ryan Dahl
Reverting because this is causing Appveyor to be red. However I hope we can reintroduce include_bytes! soon in a way that works on windows. Fixes #1208. This reverts commits 96c3641fffe8509af9351cec4580861e76d89cc9 and 92e404706b0b1a26cdaf6f8cf81aac148292557f.
2018-11-20Split Runner from CompilerKitson Kelly
2018-11-17Use short install links.Ryan Dahl
2018-11-16v0.2.0Ryan Dahl
Changes since v0.1.12: - First pass at running subprocesses (#1156) - Improve flag parsing (#1200) - Improve fetch() (#1194 #1188 #1102) - Support shebang (#1197)
2018-11-16Remove unused bundle_hash_hRyan Dahl
It was orphaned in 92e404.
2018-11-16First pass at running subprocesses (#1156)Bert Belder
2018-11-16improve flag parsingBartek Iwańczuk
2018-11-16Support uploading data from fetch()Ryan Dahl
Does not yet support streaming, only strings and TypedArrays for now.
2018-11-16Specify exact versions in Cargo.tomlRyan Dahl
To fix "cargo check" on travis, where they have silently upgraded us from Ring 0.13.2 to 0.13.4, which has some errors.
2018-11-16Lift snapshot to be an argument of Isolate::new().Ryan Dahl
2018-11-16Improve docs (#1196)Ryan Dahl
2018-11-16Support shebangRyan Dahl
2018-11-16Simplify NotFound code.Ryan Dahl
2018-11-14Support request method and headers in fetch() (#1188)Ryan Dahl
Adds a general HttpHeader flatbuffer message for serializing requests and responses.
2018-11-14Add a simple doc generation tool.Ryan Dahl
And website upload tool.
2018-11-14fix code sample in Docs迷渡
2018-11-13Support streaming response bodies from fetch()Ryan Dahl
Also Buffer.readFrom in fetch() to buffer response.
2018-11-13Wrapper around hyper::Body so it can be used as AsyncReadRyan Dahl
2018-11-12Use include_bytes! instead of incbin. (#1182)Ryan Dahl
2018-11-12Use Uint8Array instead of ArrayBufferViewRyan Dahl
Original: https://github.com/denoland/deno_std/commit/0c8ad6eb1af05b259cc7c622e87e27b402886c96
2018-11-12v0.1.12Ryan Dahl
- Update to TypeScript 3.1.6 (#1177) - Fixes Headers type not available. (#1175) - Reader/Writer to use Uint8Array not ArrayBufferView (#1171) - Fixes importing modules starting with 'http'. (#1167) - build: Use target/ instead of out/ (#1153) - Support repl multiline input (#1165)
2018-11-12Update to TypeScript 3.1.6 (#1177)Kitson Kelly
2018-11-11Use https for the demoSteven Liekens
Without HTTPS it might be possible for a MITM to inject arbitrary code into the "thumb.ts" response which Deno would then execute.
2018-11-09Basic http demo working.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/805efdb7508f4b916645df49038b4c143c0de0a1
2018-11-09First pass at BufWriterRyan Dahl
Original: https://github.com/denoland/deno_std/commit/9329cd76bd67b96fbeab6ef0b02703bd77a9b482
2018-11-09Ensure global type instances are available.Kitson Kelly
2018-11-09Cleanups for runtime lib declarations.Kitson Kelly
2018-11-09Reader/Writer should use Uint8Array not ArrayBufferViewRyan Dahl
Because many Reader/Writer implementations (e.g. bufio) assume their able to use subarray() with byte indexes and often ask for byte values, it makes sense to simply restrict all implementations to Uint8Array.
2018-11-08wipRyan Dahl
Original: https://github.com/denoland/deno_std/commit/ad578ab6fe75dd41585be741e378b92645258b28
2018-11-08Use async iterators for http server.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/9377d154c5079a732d76a36a6ec5892d8da43087
2018-11-08Local filenames starting with 'http' shouldn't be remote. (#1167)Ryan Dahl
2018-11-08build: Use target/ instead of out/ (#1153)Ryan Dahl
2018-11-08Add tests for TextProtoReader.readMIMEHeader()Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/36edda18ab75ea8287088478d46e89e5e8d6be0f
2018-11-08First pass at TextProtoReader.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/31ab43b9193a9107d965c991f17992fcee791b33
2018-11-08travis should immediately fail when lint or test_format fails (#1172)Aladeen
Fixes #1104
2018-11-08Simplify travis.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/22151e4f7bddfa14aed096d7ad7d021b026b562b
2018-11-08Add BufReader.peek()Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/90cbca40beb7f5523f7ac99b5f317b727d4df3a4
2018-11-08Add test bufioReadLineRyan Dahl
Original: https://github.com/denoland/deno_std/commit/01f576af87de38628bf65eccc855a3503e76d03e
2018-11-07Use https instead of http.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/2d8d8247da4f71fe7e796fc1d3da1f797a2c4195
2018-11-07Add BufReader.readSlice()Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/e37b949e2c4523911e071086c1cf4ea4f33dc6af
2018-11-07Rename bufio.Reader to BufReaderRyan Dahl
Original: https://github.com/denoland/deno_std/commit/6b886836c03ad0641aa0522ce1a765935884952e
2018-11-07Add bufio tests.Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/aa9e3df0d21e927ec86209c8cc81d5f1a27a0736
2018-11-07Add ReadmeRyan Dahl
Original: https://github.com/denoland/deno_std/commit/be1eb62bdc04c7af4f1f63b4b01b26c23d62f3c9