Dev Useful Stuff
2.02K subscribers
2 photos
337 links
Here you can find some interesting links to development libraries, frameworks, tools, plugins and articles
Download Telegram
lozad.js - light (~0.5kb) JS library for image lazy loading. Has no dependencies.

#js #javascript

https://github.com/ApoorvSaxena/lozad.js
The jQuery is the de facto standard in our industry, but it is too large and heavy, which may cause significant loading traffic on your website. Today, more developers choose widgets written in Vanilla Javascript to make pages lighter and faster.

https://plainjs.com/ is the online catalogue of widgets and simple functions written in pure JavaScript ready to use.

#js #javascript
TeaVM - is quite peculiar web framework. You write the code on Java/Kotlin/Scala and it transforms the code to JavaScript to be run in a browser. It sounds like old-school GWT framework, but the biggest difference is GWT parses Java source code, but TeaVM parses the compiled java byte code. This makes compilation much faster than GWT and it supports the latests features from JVM languages. As author says, the compiled JS is significantly smaller, than on Angular or ReactJS. So, today you can use your favourite Kotlin both on backend and frontend :3

#weird #javascript #jvm

http://teavm.org/
​​Deno - (★ 57.4k on GitHub) is a secure runtime for JavaScript and TypeScript, a modern Node.js alternative. Deno aims to provide a productive and secure scripting environment for the modern programmer. It is built on top of V8, Rust, and TypeScript.

Please take a look at the Deno Handbook as well for a quick start.

#nodejs #rust #v8 #js #javascript #typescript