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,151 public repositories matching this topic...
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
Mar 9, 2022 - JavaScript
-
Updated
Mar 23, 2022 - Rust
we need official example for how upload example.
-
Updated
Mar 22, 2022 - JavaScript
-
Updated
Mar 17, 2022 - JavaScript
-
Updated
Feb 20, 2022 - TypeScript
Hi, First and foremost, I think this is a great start at making something really simple and effective. Thank you!!
However... I have always found template strings a little odd especially in this context.
Let us say we have
const query = `SELECT ${distinct}, ${columns} FROM ${table} ${innerJoins} WHERE ${where}`;
(Where distinct, columns, table etc are their own strings made up of other
-
Updated
Mar 19, 2022 - JavaScript
stringify in std/encoding/csv.ts takes a lot of reading to figure it out. After looking over the documentation and source code, I've discovered that I need to provide objects then specify what each column is along with how each column should access a property on the objects.
Some suggestions:
- Unfortunately the property access is not type safe and so it's possible to change a property na
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
Oct 14, 2021 - JavaScript
If you perform C-h f and read the dialog, it can link you to the implementation for that function.
There isn't any technical barrier to do this for JS/TS.
Currently we use annotate-snippets crate to display diagnostics in dlint and deno lint has its own diagnostics display API.
We should try out https://docs.rs/miette/4.2.1/miette/ which seems to be well suited for this task and is now used by SWC:
swc-project/swc#3946
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:


See https://github.com/denoland/deno/blob/main/ext/web/08_text_encoding.js#L98.
Currently for a non streaming decode we perform 3 native calls:
op_encoding_new_decoderto create the decoderop_encoding_decodeto actually perform the decodingcore.closeto destroy the decoderFor cases where
options.stream === falsethis can be reduced to a single decode op.To do this,