Earlier quoted context omitted.
You do realize deno is based on the V8 JavaScript Engine and there isn't such thing as a typescript runtime even by Microsoft the developers of typescript? https://en.wikipedia.org/wiki/TypeScript
Deno used to run the type checker with the `run` command, but now you need to pass a flag to run the type checker.
Aleph.js – Fullstack Framework in Deno
31–40 of 54 posts
Re: Aleph.js – Fullstack Framework in Deno
#32The only thing I ask to Deno is to make typescript development as immediate as running python. I'm exhausted by webpack and similar
You can rebuild the whole thing in Deno or whatever but you'll probably end up with the same boilerplate if you want it to cover all the features Webpack has.
Re: Aleph.js – Fullstack Framework in Deno
#33The only thing I ask to Deno is to make typescript development as immediate as running python. I'm exhausted by webpack and similar
Re: Aleph.js – Fullstack Framework in Deno
#34Re: Aleph.js – Fullstack Framework in Deno
#35Earlier quoted context omitted.
You do realize deno is based on the V8 JavaScript Engine and there isn't such thing as a typescript runtime even by Microsoft the developers of typescript? https://en.wikipedia.org/wiki/TypeScript
Deno used to run the type checker with the `run` command, but now you need to pass a flag to run the type checker.
Re: Aleph.js – Fullstack Framework in Deno
#36Earlier quoted context omitted.
Well deno is about five years old. That is to be expected, isn't it ? The timing feel similar to rust to me. It needed almost a decade to have real production ready project. Mozilla was an exception as they built it.
That doesn’t sound right to me. Rust 1.0 released in 2015. Facebook had a source control server in production in 2018. Does that count as “real”?
Re: Aleph.js – Fullstack Framework in Deno
#37Re: Aleph.js – Fullstack Framework in Deno
#38 export const $VERB ...
structure of the server route files.Re: Aleph.js – Fullstack Framework in Deno
#39Earlier quoted context omitted.
Well deno is about five years old. That is to be expected, isn't it ? The timing feel similar to rust to me. It needed almost a decade to have real production ready project. Mozilla was an exception as they built it.
How many years before a language is mature enough that it's not to be expected? I'm thinking 5 years is starting to push it, but others may have other opinions. on edit: when saying push it I mean sort of still reasonable, but maybe a bit troubling? 7 years would definitely feel like too much to me. I wonder if there are any studies.
Re: Aleph.js – Fullstack Framework in Deno
#40Earlier quoted context omitted.
It is. Deno runs TypeScript out of the box.
It strips type info and runs it as Javascript, though. There's no native typescript runtime, AFAIK (it doesn't enforce types at runtime, only at build time)
Java strips type info and runs it as JVM byte codes. There's no native Java runtime, AFAIK(it doesn't enforce types at runtime, only at build time).
What's the problem?