Can I run an express application under deno
Or do I need to port it to Oak?
Is there an "express -> oak" cheatsheet ?
11 Replies
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Thank you
In the
with-express
examples from
https://github.com/denoland/examples.git
they just do
import express from 'https://cdn.skypack.dev/express';
and with the hello world program, I get
What do I to track that down?
What's the proper way for me to submit a bug report on the example?Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
If examples don't work they should probably get updated. Idk yet how well npm specifiers work but you could try esm.sh instead of skypack. That might work.
Thank you
import express from "npm:express";
works for example.
How to I report problems with the examples to whomever updates them?
(Or, in this case, how do I put in the change and get the repository updated ?)Create an issue on github for the examples repository.
I am new at this. How do I (or how do I learn to) create a github issue?
Go here https://github.com/denoland/examples
Then click on the issues tab and select to create an issue. Mention that the with-express example doesn't work and include a copy of the error you got when you tried to run it.
If you want to fix it yourself, you can create a fork of the repo, update your copy, then create a pull request on the repo I linked to. A pull request is a way for asking the repository owners to accept a change you made.
I'm not sure if they would accept npm specifier option currently since that feature is still unstable.
thank you & thank you for your patience
There are problems with several of examples.
Should I create one issue for each or a single issue for all of them?
One for each is probably better.
thank you