Denoify
HomeGitHub
  • 🚀Quick start
  • 🔀.deno.ts files
  • 🔧Build options
  • 🪄Special comments
  • 🔍Automatic discovery of ports
  • 📤Publishing on deno.land/x
  • 🆘Deal with GitHub API rate limit exceeded
  • 📚Other resources
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
Export as PDF

Quick start

Next.deno.ts files

Last updated 7 months ago

Was this helpful?

The best way to get started with Denoify is to start hacking around with the demo repo, you can come back later on to this doc for more details about the available options.

git clone https://github.com/garronej/my_dummy_npm_and_deno_module
cd my_dummy_npm_and_deno_module
yarn install
yarn build

# Run the sample with node
node dist/test/test1.js

# Run the sample with Deno
deno run --allow-read --allow-env deno_dist/test/test1.ts

You can have a look at how the sources are transformed from into .

🚀
the src directory
the deno_dist directory
GitHub - garronej/my_dummy_npm_and_deno_module: Example/tutorial on how to setup denoifyGitHub
Logo