What is next? There is the official getting started.
For example, run Deno program with a one-liner on the command line:
$ deno run https://deno.land/std/examples/welcome.ts
Download https://deno.land/std/examples/welcome.ts
Warning Implicitly using latest version (0.102.0) for https://deno.land/std/examples/welcome.ts
Download https://deno.land/[email protected]/examples/welcome.ts
Check https://deno.land/std/examples/welcome.ts
Welcome to Deno!
Well, deno can execute a local index.js / index.ts just as Node.js can. However, it is notable that deno doesn't create package.json, package-lock.json and even node_modules directory!
Here is another example.
$ mkdir my-first-deno
$ cd my-first-deno
$ touch index.js # or index.ts