π€7π€£4β€3π3π₯1
Less shell-oriented than zx, execa focuses on making executing external commands secure, cross-platform, and easy to debug. v9 lets you make commands iterable so you can process their output on the fly, map/filter both input and output, pipe multiple commands, and more. GitHub repo.
EHMICKEY, SORHUS, ET AL.
Please open Telegram to view this post
VIEW IN TELEGRAM
π5β€2π₯2π€£2π€©1
CHALLENGE
function Shape() {}
function Circle(radius) {}
Circle.prototype = Object.create(Shape.prototype);
const shape = new Shape();
console.log(shape instanceof Circle);
π€£6β€3π₯3π1
π13π€10π€©4β€3π€£2π₯1
Please open Telegram to view this post
VIEW IN TELEGRAM
π9β€3π₯2π€©2π€£1
To continue delivering more exciting stories, we're kindly asking telegram premium users to help us take things to the next level.
https://t.iss.one/javascript?boost
https://t.iss.one/javascript?boost
Telegram
JavaScript
Boost this channel to help it unlock additional features.
β€9π2π₯2π€£1
CHALLENGE
function Animal() {}
const dog = new Animal();
console.log(dog.constructor === Animal);
π5π₯2β€1
π13π€8β€7π€©5π₯1
πβοΈ How to Document Your JavaScript Package
Youβve written some useful code, you want to distribute it.. what next? Useful docs! The Deno team demonstrates the value of JSDoc and writing documentation alongside your usual source code.
THE DENO TEAM
Youβve written some useful code, you want to distribute it.. what next? Useful docs! The Deno team demonstrates the value of JSDoc and writing documentation alongside your usual source code.
THE DENO TEAM
Please open Telegram to view this post
VIEW IN TELEGRAM
β€8π2π€©2π€1π€£1
CHALLENGE
var foo = {};
var bar = Object.create(foo);
foo.a = 1;
console.log(bar.a);
β€4π₯2
π19π€6π€©5π₯1
A commercial, turn-based strategy game available on the Steam Store, but now with an open sourced engine and tooling. The game is published by Null, an indie game publisher founded by GitHub cofounder Chris Wanstrath.
CHRISTOPH NAKAZAWA
Please open Telegram to view this post
VIEW IN TELEGRAM
π11β€4π₯1π€©1
CHALLENGE
function Person() {}
var person = new Person();
console.log(person instanceof Person);
console.log(person instanceof Object);
β€5π₯2
π15β€7π₯4π€©4
It basically loads your code into this site (which you can use directly, if you'd rather not install an extension) where you can tweak settings/theme and export to either a PNG or SVG.
VKRSI / VISUAL STUDIO MARKETPLACE
Please open Telegram to view this post
VIEW IN TELEGRAM
π7π€2β€1π₯1
CHALLENGE
function X() {}
X.prototype.getValue = function() {
return this.value;
};
function Y() {
this.value = 42;
}
Y.prototype = Object.create(X.prototype);
Y.prototype.constructor = Y;
var y = new Y();
console.log(y.getValue());
β€8π€7π₯4π3π€£3
π6β€5π₯5
Create a schema, spin up a server, and youβre good to go (then you get to wire everything up). Supports GraphQL subscriptions via SSE. Designed to run across numerous environments from Node to AWS Lambda, Deno, Bun etc. GitHub repo.
THE GUILD
Please open Telegram to view this post
VIEW IN TELEGRAM
π7π₯2π€2β€1
CHALLENGE
function A() {}
A.prototype.value = 1;
function B() {}
B.prototype = new A();
B.prototype.value = 2;
var b = new B();
console.log(b.value);
π7β€3π₯2