aleph.js icon indicating copy to clipboard operation
aleph.js copied to clipboard

The Full-stack Framework in Deno.

Results 96 aleph.js issues
Sort by recently updated
recently updated
newest added
trafficstars

Steps to reproduce: ``` deno run -A -r https://alephjs.org/init.ts # choose "React" cd my-app rm routes/_app.tsx routes/_404.tsx routes/todos.tsx deno task build && deno task start ``` Everything still fine. Now...

I have an auth middleware, and checking if a request path starts with `/admin` and a user should have a valid cookie, else it should redirect to the home page,...

On video: * Local React example * Deployed React example * Deployed Vue example https://user-images.githubusercontent.com/21293376/225364987-e171bcde-854e-4668-a387-d67ce5253be9.mp4

Why react-mdx doesn't allow enable unocss? I manually configured it and it worked also. https://github.com/alephjs/aleph.js/blob/c39d5fc0640e8fadfee612e4c00e4f3aab9c8df8/init.ts#L83

Hi, I am newbie to Aleph.js. Please tell me, how can I get HOST from http request?

I use `window.onbeforeunload` event to prevent users from losing their form data when they try to close the page. But a user can click on ``, and they will be...

I realise this might be a bit ambitious, but it would be awesome to build full stack apps in Deno using svelte! Thanks to all the folks working on aleph,...

I was trying to see my project in my phone while I code in the computer. I'm used to do this opening https://192.168.100.66:3000 in my phone. But this time this...

In the yew docs they recommend using trunk to build your app: https://yew.rs/docs/getting-started/build-a-sample-app I made the following change to `dev.ts`: ```ts buildProc = Deno.run({ cmd: ['trunk', 'build'], stdout: 'inherit', stderr:...

When using the React Starter template if you right update `server.ts` and set `ssr: false` like this: ``` import { serve } from "aleph/react-server"; import routes from "./routes/_export.ts"; serve({ router:...