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 3,254 public repositories matching this topic...
Chore
Describe the chore
Update the rest of the monorepo to use common assets.
Tasks
- Find away to get favicons working fully
- Update the rest of the monorepo
While writing string data (example = "121212121212121" -> string of all integer characters) into excel.
while user download and see, the downloaded xl/CSV, the data is shown in exponential format. Is there a way to show the same data. without converting into exponential in this case.
-
Updated
Jul 26, 2022 - Rust
-
Updated
Jul 13, 2022 - JavaScript
we need official example for how upload example.
-
Updated
Jul 29, 2022 - JavaScript
-
Updated
Jul 28, 2022 - JavaScript
-
Updated
May 2, 2022 - TypeScript
-
Updated
Jul 29, 2022 - JavaScript
-
Updated
Jul 27, 2022 - JavaScript
The base58 encoding scheme has become quite popular for a number of use cases. Any thoughts on including a standard implementation in this lib?
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
-
Updated
Jul 29, 2022 - TypeScript
-
Updated
Jun 23, 2022 - JavaScript
It would be great to have a lint rule to flag when true or false is passed to a function.
As a solution the problem of a vague true/false value passed to a function, the "boolean trap", I have a habit of creating a self-documenting constant and using that instead.
Instead of redraw(true), I'll define const INLINE = true; and then use redraw(INLINE);.
Thanks for considering this
-
Updated
Jul 28, 2022 - TypeScript
-
Updated
Jun 28, 2022 - TypeScript
Relative URLs in readme markdown starting with ./ should link to files within the package, but incorrectly deno.land renders them as if they are deno.land/x packages.
Here is an example readme with broken relative URLs (the top logo SVG, and various links to package modules):
https://deno.land/x/ruck@v1.0.0
Similar to a past issue (that was apparently fixed) for relative URLs that don't
-
Updated
Jul 22, 2021 - TypeScript
How to add oauth2 authentication in openapi?
-
Updated
Jul 26, 2022 - TypeScript
For me it would make a lot of sense to run
checkin watch mode.I think that adding check subcommand was a great idea, and running it in watch mode would provide the best development experience (at least for me). Also if I'm not mistaken it would check further edits faster, as typescript compiler is already warmed up after the first check.