Skip to content
Advertisement

Tag: deno

How to use streams in Deno?

I am very confused on Deno documentation. It has ReadableStream and WritableStream API, but it doesn’t have a documentation to use it. I want to read from ReadableStream and write to WritableStream, how can I do that in Deno? Answer I want to read from ReadableStream and write to WritableStream, how can I do that in Deno? Here’s a basic

Three different `this` behaviours for three different JS engines

I was learning about the this keyword and how it means different things with regards to regular functions vs ES6 arrow functions and function expressions and I came across something odd when trying to run the following code in Chrome, Deno and Node. So I prepared following: Example: Deno output: Node output: Chrome output: According to my understanding of this,

How to use Google OAuth with Deno js?

Is there some libraries or modules for Google OAuth in Deno.js? I am trying to impelemnt google login on my web application and use this google account for uploading youtube videos in deno.js. I am grateful for any help! Answer I think a generic solution for OAuth doesn’t exist yet. However, if you can override the default implementation, you can

Advertisement