並び順

ブックマーク数

期間指定

  • から
  • まで

321 - 360 件 / 421件

新着順 人気順

denoの検索結果321 - 360 件 / 421件

  • Deno, first approach

    Disclaimer Before starting, it is very important to remember that at the time of writing, Deno is still under development. Therefore, any produced code must be considered unstable due to potential unanticipated changes in the API. We will therefore use version 0.21.0 as a basis for the next step. Finally, it should also be noted that Deno is not intended to replace Node or merge with it. Introduct

      Deno, first approach
    • Deno 1.30: Built-in Node modules

      # MacOS and Linux curl -fsSL https://deno.land/x/install/install.sh | sh # Windows iwr https://deno.land/x/install/install.ps1 -useb | iex Click here for more installation options. Support for built-in Node.js modulesIn Deno, npm packages have already had access to built-in Node.js modules such as fs, path, process, and many more through Deno’s Node.js compatibility layer. In this release, these m

        Deno 1.30: Built-in Node modules
      • Deno 1.7 Release Notes

        Today we are releasing Deno 1.7.0. This release contains many new features, some stabilizations, and some great improvements to existing APIs and tooling. Improvements to deno compile: cross compilation, 60% reduction in output size, and more Support for data URLs: use data: URLs in imports and workers New unstable Deno.resolveDns API: query nameservers for DNS records If you already have Deno ins

          Deno 1.7 Release Notes
        • Overview - Emacs NG - A new approach to Emacs

          Home Deno/Javascript Webrender Dynamic modules FAQ Native Hackers Handbook emacs-ng# A new approach to Emacs homepage • Deno/Javascript • webrender • ng-module • handbook • faq Intro# emacs-ng is based off of the master branch of emacs, and regularly merges using Github Actions(Runs at 00:00, only on Saturday). The last merged commit is 931cd93313 (04 20 2024). Motivation# The goal of this fork is

          • Deno Deploy の紹介

            Deno Deploy の仕組み、出来ること、活用事例を紹介します。

              Deno Deploy の紹介
            • GitHub - oguimbal/pg-mem: An in memory postgres DB instance for your unit tests

              You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                GitHub - oguimbal/pg-mem: An in memory postgres DB instance for your unit tests
              • lib: add require('🦕') by bnoordhuis · Pull Request #35478 · nodejs/node

                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                  lib: add require('🦕') by bnoordhuis · Pull Request #35478 · nodejs/node
                • Deno 1.16 へのアップデートと変更事項まとめ - 虎の穴開発室ブログ

                  皆さんこんにちは。最近、玄米生活を始めました、おっくんです。 去る 2021 年 11 月 9 日に Deno 1.16 がリリースされました。 今回も、リリースノートを参考に 変更事項の気になるところを紹介します。 実行環境 Docker イメージ denoland/deno:centos(確認時点では Deno 1.16.1 でした) Deno 1.16 Deno 1.16 での変更事項をDeno 1.16 リリースノートを元に確認します。 deno.com fetch API が、ファイル URL をサポートするようになりました これまで Deno では、 fetch を web 標準の API として、ネットワークリソースにアクセスするためのみに使用してきました。 また、ローカルファイルアクセスには、Deno.readfile()などのメソッドが使用されてきました。 このリリースで

                    Deno 1.16 へのアップデートと変更事項まとめ - 虎の穴開発室ブログ
                  • Fresh の話

                    class: middle, center <img src="./assets/fresh-logo.svg" width="100" /> Fresh の話 --- # 話す人 <img src="./assets/hinosawa.jpg" align="right" width="300" /> 日野澤歓也 twitter @kt3k - 2009 ~ Web 開発者 - 言語 JS, PHP, Java, etc - 2021 ~ Deno 開発者 <small>Deno 社では主に標準モジュール開発、Node 互換性開発を担当</small> --- # <img src="./assets/fresh-logo.svg" width="50" /> Fresh とは - フロントエンド Web フレームワーク - Deno 公式 - Preact ベース (React と互換

                    • Denoの登場でNode.jsの時代は終わるのか? - Qiita

                      Deno ver 1.0 5月13日、Deno v1.0の正式リリースが決定しました。 少し勉強してみましょう。 ↑ かわいい Denoってなに? DenoはNode.jsの製作者であるRyan Dahlによって作られました、新しいJS/TSランタイムです Denoはdefaultで安全です(許可なしではファイル・ネットワーク・環境にアクセスできません) DenoはTypeScriptがビルトインで入ってます 外部パッケージはurlでインポートできます(Goみたいに) ディーノって読むらしい(デノではない) Denoが作られた背景 一年前くらいにこの動画を見たことを思い出しました。 Node.jsの作者であるRyan Dahlが、Node.jsを開発した当時の仕様を後悔する旨の動画です。 https://www.youtube.com/watch?v=M3BM9TB-8yA&t=1319s

                        Denoの登場でNode.jsの時代は終わるのか? - Qiita
                      • GitHub - lucacasonato/dext.ts: The Preact Framework for Deno

                        To create a new project run dext create myproject. This will scaffold a new dext project in the myproject folder. This folder contains a few files: deps.ts contains all of your projects dependencies. pages/index.tsx is the source for the / of your project. pages/user/[name].tsx is the source for all routes at /user/[name] (e.g. /user/luca and /user/bartek). tsconfig.json is the TypeScript configur

                          GitHub - lucacasonato/dext.ts: The Preact Framework for Deno
                        • Import mapsでDenoのパッケージのバージョンを管理したい

                          この記事はDeno Advent Calendar 2019 - Qiitaの 7 日目の記事です。 Deno で何かしら 3rd パーティ製のライブラリを利用するコードを書いたことはありますか。例えば以下のようにライブラリを import します。 import uniq from 'https://deno.land/x/lodash@4.17.15-es/uniq.js' console.log(uniq([1, 2, 3, 1, 2, 3])) Deno は Node.js とは違いnpmのようなパッケージマネージャが付属しておらず、パッケージ名で import/require することはありません。Deno はそもそもnpm installのような事前処理が不要で、実行するときに import 文を解析しながら必要なコードを取得してから実行ます。いわゆるZero-installの

                          • Denoがついに1.0になるので、特徴をまとめた

                            Deno 1.0 will be released immediately! Deno 1.0に関する記事を見ました。 JavaScript/TypeScriptが好きな僕は、Denoを作るということが発表された時「すごい面白いものがくる!」と思いました。僕の中で、Node.jsはよく出来たツールだったので、それと同じようなものが生まれようとするとは思っていなかったのです。 面白いと思ったのは僕だけではなく、当時たくさんの人がそう感じたはずです(このissueからもそう感じました)。 あれから二年弱、ついにDeno 1.0がリリースされるということで、深夜についその記事を読みふけってしまいました…。 本記事では、Deno 1.0に関する記事に書かれていたことと、denoのドキュメントを眺めて集めた情報をまとめます。 超訳も一部取り入れようと思ったんですが、記事のコメントを見ると、記事自体の

                              Denoがついに1.0になるので、特徴をまとめた
                            • slide-ai-codegen.md

                              slide-ai-codegen.md marp theme paginate true gaia true LLMによるフロントエンド生成自動化 mizchi | Plaid Inc TechFeed Expert Night 31 LLM 使ってますか? 便利ですよね ChatGPT / GitHub Copilot WebUI じゃなくて CLI で自動化したいですよね? 黎明期でまともにモジュール化しても無駄そうだし、 Deno の書き捨てスクリプト量産するぞ! Deno for LLM 設定や依存のインストール不要のTS実行環境 書き捨ての CLI スクリプトが書きやすい => 実験しやすい npm 資産が使える import {z} from "npm:zod" コード評価に Deno Sandbox を用意できる(後述) @luca/esbuild-deno-loader で

                                slide-ai-codegen.md
                              • Deno 1.6 Release Notes

                                Today we are releasing Deno 1.6.0. This release contains some major features, and many bug fixes. Here are some highlights: Build self contained, standalone binaries: deno compile can build your Deno projects into completely standalone executables Built-in Deno Language Server: fully integrated LSP for code editors Experimental support for Mac Arm64: release binaries that run natively on Apple’s n

                                  Deno 1.6 Release Notes
                                • JavaScript/TypeScriptランタイム「Deno 1.20」がリリース

                                  「Deno 1.20」では、通信レイヤを最大60%高速化するように最適化すべく、Rust procマクロを活用して既存のRustコードから高度に最適化されたV8バインディングを生成することで、JavascriptとRust間のパフォーマンスを向上している。 DenoのネイティブHTTPサーバがレスポンスボディの自動圧縮をサポートするようになったほか、コードのベンチマークとしてdeno benchサブコマンドとDeno.bench() APIが追加された。また、コードベースの開発に固有のカスタムコマンドを定義および実行するための新たなタスクランナとしてdeno taskサブコマンドが追加されている。 さらに、Denoの設定ファイルにおいてインポートマップファイルを指定できるようになるとともに、HTTPS要求において証明書と秘密鍵を物理ファイルとしてディスクに保存することが非推奨となった。また

                                    JavaScript/TypeScriptランタイム「Deno 1.20」がリリース
                                  • How to Build an E-commerce Site with a Perfect Lighthouse Score

                                    How to Build an E-commerce Site with a Perfect Lighthouse Score Today’s consumers are more demanding than ever, especially when it comes to shopping online. These experiences must feel intuitive and snappy. Even a 100-millisecond delay in load time can hurt conversion rates by 7%. Our merch store (source here), built with Fresh and Shopify’s storefront API, is server-side rendered (SSR) with some

                                      How to Build an E-commerce Site with a Perfect Lighthouse Score
                                    • Deno の話

                                      • https://kt3k.github.io/deno_talk_ginza/

                                        • oak

                                          A middleware framework for handling HTTP with Deno, Node, Bun and Cloudflare Workers 🐿️ 🦕 View the Project on GitHub oakserver/oak oak A middleware framework for Deno’s native HTTP server, Deno Deploy and Node.js 16.5 and later. It also includes a middleware router. This middleware framework is inspired by Koa and middleware router inspired by @koa/router. API Documentation oak and Deno Deploy o

                                          • Deno 1.12.0 がリリースされたので新機能や変更点の紹介

                                            Copyright (c) 2018-2021 the Deno authors. MIT License. 日本時間の昨日(2021 年 7 月 13 日)に Deno の v1.12.0 がリリースされました。 詳細なリリース内容は上記のリリースノートにまとまっていますが、ざっと紹介していきたいと思います。 generateKey, sign, verify の3つの Web Crypto API がサポート ネイティブ HTTP サーバーでの WebSocket サポート REPL における TypeScript のサポート MessagePort および MessageChannel のサポート WebAssembly.compileStreaming() と WebAssembly.instantiateStreaming() のサポート Web Worker 間で Atomic

                                              Deno 1.12.0 がリリースされたので新機能や変更点の紹介
                                            • Deno KV internals: building a database for the modern web

                                              Deno is designed to streamline web and cloud development with built-in modern tools, direct access to web platform APIs, and the capability to import modules via npm. Web apps very often require some persistent application state. Setting up a database involves numerous configuration steps and the subsequent integration of an ORM or other systems. What if you could access such a database without an

                                                Deno KV internals: building a database for the modern web
                                              • TypeScript compiler in Rust · Issue #5432 · denoland/deno

                                                This is long, but please read before you comment. If you are interested in following this, use the subscribe button to the right instead of just adding a comment. Since the Deno v1 announcement there has been a lot of community interest in the TypeScript compiler in Rust that was mentioned. This issue is intended to provide information on that. First a few points: I am a long term collaborator in

                                                  TypeScript compiler in Rust · Issue #5432 · denoland/deno
                                                • GitHub - cmorten/opine: Minimalist web framework for Deno ported from ExpressJS.

                                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                    GitHub - cmorten/opine: Minimalist web framework for Deno ported from ExpressJS.
                                                  • date-fns を Deno から使う - Qiita

                                                    Deno (ディーノ) Advent Calendar 18日目の記事です. 今日は date-fns を Deno から使う話です. date-fns とは date-fns はとても機能が豊富な時刻を扱うためのライブラリです. 一昔前は, 時刻といえば moment を使うのが一般的でしたが, 最近では moment のバンドルサイズが大きすぎることや, API のデザインの筋の悪さ(破壊的なメソッドが多い)から moment 代替のライブラリがいくつか活発に開発されています. その中でも人気が高いライブラリの一つが date-fns です. date-fns は moment や dayjs などと違い, 時刻を表すための独自クラスを持たない点が特徴です. 独自クラスを使わずに JavaScript の builtin 型である Date 型を, API の入出力として使います. つ

                                                      date-fns を Deno から使う - Qiita
                                                    • The Anatomy of an Isolate Cloud

                                                      If you’ve ever tried Deno Deploy, our multi-tenant distributed JavaScript cloud, you may understand some of these glowing reviews: (And if you haven’t, deploy a Fresh site today!) Achieving this deployment speed was no mistake. Designing Deno Deploy was an opportunity to re-imagine how we want the developer experience of deploying an app to be, and we wanted to focus on speed and security. Instead

                                                        The Anatomy of an Isolate Cloud
                                                      • Fresh 1.3 – Simplified Route Components and More

                                                        A mere month has passed since we released Fresh 1.2 into the wild and we’re already back with another release! We’re planning to release new minor versions of Fresh on a monthly cadence going forward. This cycle contained lots of incredible PRs from the community, which is nothing short of amazing! The documentation has been expanded and improved, many bugs fixed and new features added. Thank you

                                                          Fresh 1.3 – Simplified Route Components and More
                                                        • denoDB · MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno

                                                          denoDBMySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno

                                                          • はじめに|Effective Deno

                                                              はじめに|Effective Deno
                                                            • Announcing native npm support on Deno Deploy

                                                              Deno Deploy makes it easy build and host any JavaScript app, function, or API server. Programming is faster and easier with Deno’s simple and robust APIs — web standard APIs, Node.js built-ins, and essential cloud services turned into first class JavaScript APIs, such as Deno KV (now in open beta). Your applications are run close to your users across 35 regions in the world, ensuring minimal laten

                                                                Announcing native npm support on Deno Deploy
                                                              • Denoのカレンダー | Advent Calendar 2019 - Qiita

                                                                The Qiita Advent Calendar 2019 is supported by the following companies, organizations, and services.

                                                                  Denoのカレンダー | Advent Calendar 2019 - Qiita
                                                                • Fresh(Deno)で 画像投稿サイトを作ってみよう! with Cloudflare x Tora Viewer - 虎の穴開発室ブログ

                                                                  本記事は虎の穴ラボAdvent Calendar 2022-Qiita、Deno Advent Calendar 2022の15日目の記事です。 14日目は虎の穴ラボ デザインチーム による「デザインチームが自ら企画&開発に挑戦?!クリエイター向け新サービス「デジタルサインカード」をつくってみた」が投稿されました。 皆さん、こんにちは。 先日一目惚れしたので、約15年ぶりに箱でLEGOを買いました。おっくんです。 今回は、Deno 向け Web フレームワーク Freshを基盤に、Cloudflare Images と 虎の穴ラボから公開している画像ビューア― のOSS Tora Viewer を使って簡単な画像投稿サイトを作ります。 動いているものは次のようになります。 この記事で取り扱うのは、大きくは3つの機能です。 Fresh で画像アップロードする 画像一覧表示と、Tora Vie

                                                                    Fresh(Deno)で 画像投稿サイトを作ってみよう! with Cloudflare x Tora Viewer - 虎の穴開発室ブログ
                                                                  • Ultra: The Quest for Zero-Legacy

                                                                    Ultra is an all ESM React/Deno framework that is built for Suspense Server Side Rendering. Write ESM, ship ESM, simplify your life. The Quest for Zero-Legacy You awake... the year is {new Date().getFullYear()}... ECMAScript modules have been standardised and supported in all relevant browsers... The potential for elegant code, powerful experiences, and browser-native superpowers knows no bounds...

                                                                      Ultra: The Quest for Zero-Legacy
                                                                    • Why is Deno that slow? · denoland/deno · Discussion #15121

                                                                      I'm not part of the Deno team, but can give my view on a few things. FFI Deno's FFI has recently been changing quite a bit, and moving to a more direct binding. The numbers used on Bun's website (around 350 ns per FFI call) seem in line with what the FFI performance was after my semi-recent addition of FFI callbacks, during which I also ended up adding a lot of JS-side overhead. A later PR by the

                                                                        Why is Deno that slow? · denoland/deno · Discussion #15121
                                                                      • dnt — the easiest way to publish a hybrid npm module for ESM and CommonJS

                                                                        dnt — the easiest way to publish a hybrid npm module for ESM and CommonJS Though browsers and JavaScript have come a long way, writing and publishing JavaScript modules is still painful. To maximize adoption, your module should support CommonJS and ESM, JavaScript with TypeScript declarations, and work in Deno, Node.js, and web browsers. To achieve that, many resort to complex release pipelines or

                                                                          dnt — the easiest way to publish a hybrid npm module for ESM and CommonJS
                                                                        • Velociraptor | The script runner for Deno

                                                                          Velociraptor brings package.json-style scripts to Deno, with many added features: Composite scripts Write serial and parallel scripts directly in your config files

                                                                          • Third Party Modules | Deno

                                                                            deno.land/x is a hosting service for Deno scripts. It caches releases of open-source modules stored on GitHub and serves them at an easy-to-remember domain. Deno can import modules from any location on the web, like GitHub, a personal webserver, or a CDN like esm.sh, Skypack, jspm.io or jsDelivr. To make it easier to consume third party modules Deno provides some built in tooling like deno info an

                                                                              Third Party Modules | Deno
                                                                            • Release v1.4.0 · denoland/deno

                                                                              1.4.0 / 2020.09.13 feat: Implement WebSocket API (#7051, #7437) feat(console): print proxy details (#7139) feat(console): support CSS styling with "%c" (#7357) feat(core): Add JSON ops (#7336) feat(fmt, lint): show number of checked files (#7312) feat(info): Dependency count and sizes (#6786, #7439) feat(install): bundle before installation (#5276) feat(op_crates/web): Add all single byte encoding

                                                                                Release v1.4.0 · denoland/deno
                                                                              • Deno 1.9 Release Notes

                                                                                Today we are releasing Deno 1.9.0. This release contains many new features, performance improvements, and bug fixes: Native HTTP/2 web server: a fast, correct, fully featured HTTP server in Deno Faster calls into Rust with serde_v8: 98% improvement to our baseline op overhead Blob URL support & improvements to fetch: new web compatibility features Import completions in the LSP: local, remote, and

                                                                                  Deno 1.9 Release Notes
                                                                                • Deno についてのLT会 toranoana.deno #3 を開催しました - 虎の穴開発室ブログ

                                                                                  皆さんこんにちは、虎の穴ラボのおっくんです。 2021年 12月 2日 (木) に Deno についてのLT会 『toranoana.deno #3』を開催しました。 yumenosora.connpass.com 目的意識 開催にあたっての目的意識としては、次のようなものがありました。 虎の穴ラボにDenoが好きな人がいる =>もっとDenoについて知りたい =>勉強したことを共有したい 虎の穴ラボでDenoを使っていきたい =>社内外に向けたアピール 社外の人の話を聞きたい =>虎の穴ラボ社内では知見に限界がある 開催概要 時間 内容 発表者 19:30〜19:35 虎の穴ラボについて 虎の穴ラボ 奥谷 19:35〜19:50 denoのffiでmysql接続 虎の穴ラボ 藤原 19:50〜20:05 Denoを開発するときにめっちゃ効率上げるコマンドを作った カワリミ人形 LT レポ

                                                                                    Deno についてのLT会 toranoana.deno #3 を開催しました - 虎の穴開発室ブログ

                                                                                  新着記事