21578
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile и многое другое. Администратор: @andrey2019 Donate: https://goo.gl/5FJz4U
Understanding V8’s Bytecode
An explainer of V8’s bytecode format - think of bytecode as made up of “small building blocks that make up any JS functionality when composed together”. - https://goo.gl/Qq38Uf
#javascript
A 5 Part Series on React Internals
An exercise in ‘recreating’ React from the ground up, learning how it works along the way. A good way to get a grasp on how React works. - https://goo.gl/XUESqb
#react
An Introduction to Preact: A Smaller React Alternative
Preact is a popular React-compatible alternative focused on being as thin & light as possible. - https://goo.gl/RAjTyE
#prereact
Hybrid App Developers: Don’t Store Your Users' Passwords
Storing a username and password in local storage for easy retrieval is “a very bad security practice that puts your user’s credentials at risk”. -
https://goo.gl/bMmy9m
#hybrid
react-beautiful-dnd: Attractive, Accessible Drag and Drop for Lists -
https://goo.gl/SnDzn3
#react #component #dragAndDrop
The Difference Between Explicit and Implicit Grids
Grids are flexible enough to adapt to their items - just how explicit do you have to be? - https://goo.gl/c4kUqL
#css #grid
Can Augmented Reality Solve Mobile Visualization?
AR is now slowly entering the tech mainstream. Here, Dominikus explores how AR could solve several real world problems. - https://goo.gl/N7vpVY
#mobile #AR
React Simple Maps: SVG Map React Components
A library of React components to make SVG maps using d3-geo and topojson - https://goo.gl/DAeafD
#react #map #svg #component
Organizing Microservices - Modern Integration
Microservices is probably one of the most popular buzz words among developers, but as a person who worked in the software integration space for years, I started to see some resemblance of the old ESB days. - https://goo.gl/fJFSfd
#microservice
Performant Web Animations and Interactions: Achieving 60 FPS
A high frame rate often equals a high level of responsiveness and user satisfaction, but what’s involved in getting high frame rates for Web pages? - https://goo.gl/Fxc2Qr
#animations
Node 8.4 (Current) Released
Just a week after 8.3, 8.4 is here with experimental support for http2 available behind a command line option. - https://goo.gl/VC8vrU
#nodejs #release
National Health Service, on Elixir and Kubernetes
The story of an awesome project that we built on Elixir, React.js + Redux.js and Kubernetes - eHealth for National Health Service of Ukraine. - https://goo.gl/iqfTTw
#microservice
Creating A Ride-Booking App with React Native and Pusher
Learn how you can create a ride-booking app similar to Uber, Lyft or Grab with React Native. - https://goo.gl/5YbjH9
#reactNative
N-API and Getting Started with Writing C Addons for Node
Using N-API’s abstractions, you can create C/C++ addons without having a deep understanding of how V8 works. -
https://goo.gl/SN1kW9
#nodejs #addon
All About React Router 4
A dive into React Router 4, how it’s so different from previous React Router versions, and why that is. - https://goo.gl/3NfPM7
#react #router
5 Ways to Make HTTP Requests in Node
Quick overviews of the http standard library, Request, Axios, SuperAgent, and Got. - https://goo.gl/68MJqo
#nodejs
FaceNet: TensorFlow-Backed Face Recognition and Verification
Work with facial recognition tools from Node. Mac & Linux only for now and also requires Python. - https://goo.gl/eRbTEH
#nodejs
How Async/Await Will Make Your Code Simpler
.. or “How I Learned to stop writing Callback Functions and love JavaScript ES8.” - https://goo.gl/NmZCzL
#javascript #async @await
Request Android Permissions In NativeScript Using Angular
How to request Android permissions at a time other than when the user tries to use a feature in a NativeScript mobile app - https://goo.gl/tctZEE
#angular #nativeScript
Prototyping with React VR
An overview of Airbnb’s recent VR experiments. - https://goo.gl/iQXp5c
#react #VR
Resonance: Data-Driven Animated State Transitions -
https://goo.gl/XumnD9
#react #component
Frame by Frame Animation with CSS and JavaScript
Michael Romanov explains how to build a frame-by-frame animation with just HTML, CSS and JavaScript which performs well and works great on all browsers. - https://goo.gl/ZhJYu1
#animation #css
How to Create a QR Code Reader for Your Mobile Site using just HTML, CSS and JavaScript. - https://goo.gl/8YbWCu
#mobile #qrcode
Building a Simple AI Chatbot with the Web Speech API and Node
A complete walkthrough of bringing together browsers’ speech recognition support with Node and a third party natural language processing service - https://goo.gl/QmKhMm
#nodejs #chatBot
Developing with Node.js on Microsoft Azure
A free course to get you started with developing and deploying Node apps and services on Azure. - https://goo.gl/VxZW3E
#nodejs #azure #course #free
How to Do End-to-End React Native Testing with Detox
An end-to-end testing library that can emulate user behavior and test how your app reacts to it. - https://goo.gl/ShvUkf
#reactNative #testing #e2e
React Animations in Depth
Nader Dabit looks at five options you have for doing Web-based animations with React including the pros and cons of each. - https://goo.gl/XEKkXB
#react #animations
Techniques for Passing Data Between Promise Callbacks
Some approaches for sharing data between callbacks (which each have their own scope). - https://goo.gl/xER4QR
#promise
Bootstrap 4 Beta Released
Two years in the making, the popular front-end framework is taking some key steps forward. For starters, it’s switched from Less to Sass and is now Flexbox based. - https://goo.gl/fYQcYr
#bootstrap #release
Changes to Node’s Errors You Need to Know About
Changes, beginning in Node 8 and continuing to occur en route to Node 9, are coming to errors thrown by the Node.js runtime -
https://goo.gl/ULovz2
#nodejs