https://github.com/beeman/deno-examples
Playground and examples for ry/deno using maxmcd/deno-docker
https://github.com/beeman/deno-examples
deno deno-docker docker no-issues pr-welcome typescript
Last synced: 3 months ago
JSON representation
Playground and examples for ry/deno using maxmcd/deno-docker
- Host: GitHub
- URL: https://github.com/beeman/deno-examples
- Owner: beeman
- License: mit
- Created: 2018-06-07T07:28:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-13T14:31:45.000Z (about 5 years ago)
- Last Synced: 2025-03-18T16:13:57.089Z (3 months ago)
- Topics: deno, deno-docker, docker, no-issues, pr-welcome, typescript
- Language: TypeScript
- Homepage:
- Size: 4.88 KB
- Stars: 31
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deno-examples
Playground and examples for [deno](https://github.com/denoland/deno) using [maxmcd/deno-docker](https://github.com/maxmcd/deno-docker)
## PR's only
The issues have been disabled, only PR's are accepted :)
## Requirements
- Docker
- It's only tested on a Mac. YMMV on other OS'es, patches welcome.## Run using Docker
You can run this container from the Docker registry and mount your local sources to `/apps` in the image.
```bash
cd path/to/your/scripts
docker run -it --rm -v $(pwd):/apps beeman:deno-examples bash
```## Building the image
```bash
git clone https://github.com/beeman/deno-examples
cd deno-examples
make build && make run
```## Running apps
You can now run the code from the `apps` folder:
```bash
deno ./hello-world.ts
deno ./calc-test.ts
```## MIT License