Deno
Deno is a JavaScript/TypeScript runtime with secure defaults and a great developer experience. It's built on V8, Rust, and Tokio.
- Secure by default. No file, network, or environment access (unless explicitly enabled).
- Supports TypeScript out of the box.
- Ships a single executable (deno).
- Has built in utilities like a dependency inspector (deno info) and a code formatter (deno fmt).
- Has a set of reviewed (audited) standard modules that are guaranteed to work with Deno.
- Scripts can be bundled into a single javascript file.
Here are 1,521 public repositories matching this topic...
-
Updated
Oct 25, 2020 - JavaScript
-
Updated
Oct 6, 2020 - TypeScript
Is your feature request related to a problem? Please describe.
支持自动检测框架的覆盖范围仅仅支持了几个常见前端框架和函数,还可以拓展更多的框架和语言来提升体验
这块的实现是基于配置式的,可以比较轻松拓展一个新框架的支持
https://github.com/TencentCloudBase/cloudbase-framework/blob/master/packages/framework-core/src/detect-frameworks/frameworks.ts
大家可以通过这个快速参与进核心代码的开发当中,目前可以考虑支持的框架和技术有 Hexo, Egg, Koa, Express, Koa , Docker 容器等
- Vue
- React
- V
Summary
What: Add --with-react optional flag when --web-app is used.
Why: Currently, we can call the create_app.ts script with --web-app --with-vue. It would be nice to have --web-app --with-react. The --with-vue option creates all necessary directories and files needed to run a Drash server with a Vue front-end. Seee how --web-app --with-vue works to figure out how `--web-a
Not sure if this is the correct way to do it, but I wanted to save a cache script I could easily run.
"cache": {
"desc": "Cache versions and update lock file",
"cmd": "deno cache server.ts --lock-write",
"lock": "./lock.json"
}
The result however when running denon cache is an endless loop instead of just executing it once, looks like this:
![Skärmavbild
Events
-
Updated
Sep 19, 2020 - Rust
-
Updated
Oct 26, 2020 - TypeScript
-
Updated
Oct 24, 2020 - TypeScript
-
Updated
Jul 26, 2020 - TypeScript
-
Updated
Oct 26, 2020 - Rust
SSE Support
Run deno fmt --check in CI to check that all files have proper formatting. Currently not all files are formatted the same.
-
Updated
Oct 25, 2020 - TypeScript
-
Updated
Oct 17, 2020 - Dockerfile
Support to assign a table a foreign key.
-
Updated
Oct 3, 2020 - TypeScript
-
Updated
Oct 23, 2020 - TypeScript
-
Updated
Oct 25, 2020 - TypeScript
-
Updated
Oct 20, 2020 - TypeScript
A new logo
Create a logo
Now that Pogo's APIs are stable and we're getting more users, I think it would be nice to add some "fit and finish" in the form of a logo.
Anyone have logo ideas or want to try making one?
-
Updated
Oct 23, 2020 - TypeScript
This bit of a hack but it's what we can do at the moment without changing up the internal errors.
To get more accurate error mappings we can try to parse the errno from error message string which may contain the errno from Rust when it is an std::io::Error before falling back to the current approach of switching on error.name.
This is a good first issue.