aleph.js
aleph.js copied to clipboard
The Full-stack Framework in Deno.
what is missing in alephjs for usage in prod ? this may help dev to cotrube to aleph dev
Hi I would like to know if you have any suggestion on how to add a friendly testing environment. I found it difficult to take advance of the [existing testing...
I have this very strange issue where I run ``` ALEPH_DEV=true deno run -A --unstable --location=http://localhost cli.ts dev ./examples/hello-world -L debug ``` and then go on Firefox (Ubuntu 20.04 LTS)...
I noticed on my project which is including material-ui (https://esm.sh/@material-ui/[email protected]/), that `aleph dev` is working, but `aleph start` fails with: ``` INFO Compiling... INFO {} polyfills.js (ES2015) • 207KB INFO...
The following code does not run: ```typescript import React from "react"; import { Button } from "https://esm.sh/@material-ui/core"; export default () => { return Test; }; ``` It results in the...
When I import these two modules, Aleph.js crashes on compilation step, similarly to the crash when using circular imports (https://github.com/alephjs/aleph.js/issues/306) ```typescript import WalletConnect from "https://esm.sh/@walletconnect/client" import QRCodeModal from "https://esm.sh/@walletconnect/qrcode-modal" ```...
Aleph.js v0.3.0-alpha.33 deno 1.10.2 (WSL) I'm getting no error in terminal but browser shows following: 
With the new version of aleph.js I receive the following error, any idea? ``` ➜ ln-sanitycheck git:(main) aleph dev Check https://deno.land/x/[email protected]/cli.ts Check https://deno.land/x/[email protected]/cli/dev.ts INFO Config loaded from aleph.config.ts Check https://deno.land/x/[email protected]/framework/react/init.ts...
It seems like [PostCSS has an official Deno package](https://deno.land/x/[email protected]), but it is currently [lacking Typescript support](https://github.com/postcss/postcss-deno/issues/1). We could do some sort of type casting to get some types, or we...
testing code: ```typescript // @deno-types="~/typings/fake.d.ts" import Fake from "fake"; ``` import maps: ```jsonc { "imports": { "~/": "./", "fake": ".js" // skip }, "scopes": {} } ``` typings/fake.d.ts in root...