├── .credo.exs ├── .doctor.exs ├── .formatter.exs ├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── config ├── config.exs ├── dev.exs └── test.exs ├── coveralls.json ├── guides ├── examples │ ├── images │ │ ├── handwriting.png │ │ └── testocr.png │ ├── tesseract_ocr.livemd │ └── web_scraper.livemd └── images │ ├── logo.svg │ └── your_logo_here.png ├── lib ├── deno_downloader.ex ├── deno_ex.ex ├── deno_ex │ └── pipe.ex └── tasks │ ├── compile │ └── deno.ex │ ├── deps │ └── get.ex │ └── install.ex ├── mix.exs ├── mix.lock ├── priv └── .gitkeep └── test ├── deno_ex └── pipe_test.exs ├── deno_ex_test.exs ├── support ├── args_echo.ts ├── env_echo.ts ├── fail.ts ├── hello.ts ├── how_many_chars.ts ├── hrtime.ts ├── network.ts ├── read_file.ts ├── subprocess.ts ├── system_calls.ts └── write_file.ts └── test_helper.exs /.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/.credo.exs -------------------------------------------------------------------------------- /.doctor.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/.doctor.exs -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [akoutmos] 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/config/test.exs -------------------------------------------------------------------------------- /coveralls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/coveralls.json -------------------------------------------------------------------------------- /guides/examples/images/handwriting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/examples/images/handwriting.png -------------------------------------------------------------------------------- /guides/examples/images/testocr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/examples/images/testocr.png -------------------------------------------------------------------------------- /guides/examples/tesseract_ocr.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/examples/tesseract_ocr.livemd -------------------------------------------------------------------------------- /guides/examples/web_scraper.livemd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/examples/web_scraper.livemd -------------------------------------------------------------------------------- /guides/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/images/logo.svg -------------------------------------------------------------------------------- /guides/images/your_logo_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/guides/images/your_logo_here.png -------------------------------------------------------------------------------- /lib/deno_downloader.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/deno_downloader.ex -------------------------------------------------------------------------------- /lib/deno_ex.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/deno_ex.ex -------------------------------------------------------------------------------- /lib/deno_ex/pipe.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/deno_ex/pipe.ex -------------------------------------------------------------------------------- /lib/tasks/compile/deno.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/tasks/compile/deno.ex -------------------------------------------------------------------------------- /lib/tasks/deps/get.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/tasks/deps/get.ex -------------------------------------------------------------------------------- /lib/tasks/install.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/lib/tasks/install.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/deno_ex/pipe_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/deno_ex/pipe_test.exs -------------------------------------------------------------------------------- /test/deno_ex_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/deno_ex_test.exs -------------------------------------------------------------------------------- /test/support/args_echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/args_echo.ts -------------------------------------------------------------------------------- /test/support/env_echo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/env_echo.ts -------------------------------------------------------------------------------- /test/support/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/fail.ts -------------------------------------------------------------------------------- /test/support/hello.ts: -------------------------------------------------------------------------------- 1 | // Prints to STDOUT 2 | 3 | console.log("Hello, world.") -------------------------------------------------------------------------------- /test/support/how_many_chars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/how_many_chars.ts -------------------------------------------------------------------------------- /test/support/hrtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/hrtime.ts -------------------------------------------------------------------------------- /test/support/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/network.ts -------------------------------------------------------------------------------- /test/support/read_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/read_file.ts -------------------------------------------------------------------------------- /test/support/subprocess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/subprocess.ts -------------------------------------------------------------------------------- /test/support/system_calls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/system_calls.ts -------------------------------------------------------------------------------- /test/support/write_file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/deno_ex/HEAD/test/support/write_file.ts -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------