examples icon indicating copy to clipboard operation
examples copied to clipboard

A simple todo app using Deno and React.

Results 25 examples issues
Sort by recently updated
recently updated
newest added

Can I use prisma without data proxy? If my output path is "generated/client", I reference the index.js and I get an "error: Uncaught ReferenceError: exports is not defined" error

Hi, Normally deno look into `deps.ts` for dependencies, however we still need to manually set the reference of dependencies with the exact version (semver). I'm not using [trex](https://github.com/crewdevio/Trex) neither any...

The current import cause to this error on `deno task dev`: ```sh TypeError: Invalid package specifier 'npm:react-dom/client@^18.2'. Did you mean to write 'npm:react-dom@^18.2/client'? ```

I noticed all of the images in the with-vue example were broken. This quick PR remedies that, repairing and restoring all images. 🎉

Following first part of React example using deno version 1.32.5 on MacOS Ventura 13.3.1. ``` deno run --allow-env --allow-read --allow-write npm:create-vite-extra ```` Selected `deno-react` template and `TypeScript` variant. cd into...

I am getting this error message. And I am using deno 1.32.5 (release, x86_64-apple-darwin) v8 11.2.214.9 typescript 5.0.3

import { ref } from 'vue' Import unused .dinosaur {} If the style is empty, you can remove it

FYI ### 1 ```bash Task dev deno run -A --unstable --node-modules-dir npm:vite failed to load config from /home/juan/dev/denoland-examples/with-react/vite.config.mjs error when starting dev server: TypeError: Invalid package specifier 'npm:react-dom/client@^18.2'. Did you...

nodejs: ```js const express = require("express"); const app = express(); app.get('/', function (req, res) { res.write('hello\n'); setTimeout(() => { res.write('world'); res.end(); }, 5000); }); app.listen(3000); ``` When `curl http://localhost:3000`, it...

Because `ioredis` is also another popular Redis client library Here is my example code like the code in `with-redis` ```ts import { Server } from "https://deno.land/[email protected]/http/server.ts"; import IORedis from 'npm:[email protected]'...