Hello fellow web developers 👋
I'm here to share what our team has been up to these past few weeks.
👇Follow the thread for new project release, podcasts, video, & more 🎉
Web Developers: The latest iOS 13.4 beta brings desktop-class pointer and mouse event support to Safari and WebKit on iPadOS! For best results, adopt Pointer events, and ensure that your web content does not /depend/ on touch events (which a trackpad or mouse will not send).
Day 29 of #100DaysOfCode.
I decided to take a Node.js crash course by @traversymedia. Today I am learning the many things I can do with files using the Fs module.
From creating a directory, writing, appending, reading and renaming a file. 😎
Day 56 of #100DaysOfCode
Completed the Advanced Node and Express module of the @freeCodeCamp course on Info Sec. Learned about template engines, middleware, Pug & Passport. Next task is building 5 Node projects in the final module.
#AltCampus#node#express#pug#passport
Tip: You can abort Fetch API requests with AbortController. https://t.co/Q9ayhT0YBT by @jaffathecake covers it well. Glad browser support improved! https://t.co/DBKN5tQjir
We’ve built Vega from the ground up for fairness, safety, and speed, and so as crucial DeFi infrastructure, Vega offers traders and developers many advantages in this regard, and I like to think of it as a kind of ‘Web 2.0’ moment for DeFi. -@barnabee 👇
https://t.co/aXkmI1jbbY
node 13.10 ships with dual modules ability w/ no flags 🎉
put this into your package.json:
{
"type": "module",
"module": "./esm/index.js",
"main": "./cjs/index.js",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
}
}
And goodbye .mjs 👋
NodeJS is really just JavaScript server-side, so if you learn JavaScript you'll be able to understand NodeJS.
Its ecosystem is huge, and just how there's an app for everything. There's a node module for everything too.
You can then move onto ReactJS, VueJS or AngularJS.
2/3
@mwotton@taylorfausak Indeed: I created an n-ary tree of IO actions calling their n children, with pure () at the leaves. I put each one in a separate module, then in a separate package, then examined the core, and in both cases the root node's core was optimized down to (\RealWorld -> (), RealWorld).
The Async Clipboard API allows copying & pasting text from JavaScript: https://t.co/XxZhGfZXbR (by @_developit) ~ It's promise-based with a well-defined permissions model 📋