JavaScript Archives - Software Engineering Daily - podcast cover

JavaScript Archives - Software Engineering Daily

JavaScript Archives - Software Engineering Dailysoftwareengineeringdaily.com
JavaScript episodes of Software Engineering Daily
Download Metacast podcast app
Podcasts are better in Metacast mobile app
Don't just listen to podcasts. Learn from them with transcripts, summaries, and chapters for every episode. Skim, search, and bookmark insights. Learn more

Episodes

Web Assembly Runtime with Tyler McMullen

WebAssembly is a binary instruction format for applications to run in a memory-constrained, stack-based virtual machine. The WebAssembly ecosystem consists of tools and projects that allow programs in a variety of languages to compile into WebAssembly and run in a safe, fast, sandboxed runtime environment. WebAssembly is a transformative technology for the Internet. Most users The post Web Assembly Runtime with Tyler McMullen appeared first on Software Engineering Daily ....

May 08, 201951 min

CodeSandbox: Online Code Editor with Bas Buursma and Ives van Hoorne

Upcoming events: A Conversation with Haseeb Qureshi at Cloudflare on April 3, 2019 FindCollabs Hackathon at App Academy on April 6, 2019 Coding in the browser has been attempted several times in the last decade. Building a development environment in the browser has numerous technical challenges. How does the code execute safely? How do you The post CodeSandbox: Online Code Editor with Bas Buursma and Ives van Hoorne appeared first on Software Engineering Daily ....

Mar 25, 201948 min

WebAssembly Execution with Syrus Akbary

WebAssembly is a runtime that lets languages beyond JavaScript to execute in frontend web applications. WebAssembly is novel because most modern frontend applications are written entirely in JavaScript. WebAssembly lets us use languages like Rust and C++ after they have been compiled down to a web assembly binary module. Language interoperability is only one part The post WebAssembly Execution with Syrus Akbary appeared first on Software Engineering Daily ....

Mar 06, 201957 min

React Native Rearchitecture with G2i Team

React Native allows developers to build native applications for iOS and Android using components written in the React JavaScript framework. These ReactJS components render to native application code by going over a JavaScript bridge, a message bus that communicates between JavaScript code and native iOS or Android runtimes. For most mobile application use cases, React The post React Native Rearchitecture with G2i Team appeared first on Software Engineering Daily ....

Feb 22, 201947 min

Storybook: UI Engineering with Zoltan Olah

React, Vue, and Angular are the most popular frontend JavaScript frameworks. Each of these frameworks lets frontend developers build components. A component is a high level visual abstraction that is used to compose a user interface. Frontend development has moved towards component-driven-development. At a typical technology company, a designer will put together a design file The post Storybook: UI Engineering with Zoltan Olah appeared first on Software Engineering Daily ....

Jan 23, 201948 min

Modern Front End: React, GraphQL, VR, WebAssembly with Adam Conrad

Ten years ago, there was a distinction between “backend” and “frontend” developers. A backend developer would be managing the business logic and database transactions using Ruby on Rails or Java. A frontend developer would be responsible for implementing designs and arranging buttons using raw HTML and JavaScript. Today, developers can build entire applications in JavaScript. The post Modern Front End: React, GraphQL, VR, WebAssembly with Adam Conrad appeared first on Software Engineering Daily ...

Dec 20, 201859 min

Full Stack JavaScript with Wes Bos

Wes Bos has created popular courses on React, GraphQL, and JavaScript. With hundreds of thousands of students, Wes has earned a cult following for his fun, practical lessons on web development. The courses produced by Wes teach developers how to build useful applications such as a complete e-commerce store. Wes has built a career around The post Full Stack JavaScript with Wes Bos appeared first on Software Engineering Daily ....

Dec 14, 201856 min

JAM Stack with Phil Hawksworth

Engineers can build applications faster by using tools that abstract away infrastructure. Major cloud providers offer this tooling in the form of functions-as-a-service, as well as managed services such as Google BigQuery or Azure Container Instances. The term “serverless” refers to these functions-as-a-service and the managed services–because when you use these tools, you are not The post JAM Stack with Phil Hawksworth appeared first on Software Engineering Daily ....

Oct 24, 201849 min

Google JavaScript with Malte Ubl

Google Search is a highly interactive JavaScript application. As you enter a query, results are being automatically suggested to you before you even finish typing. When you press enter, some of your search results may be widgets that represent the weather, the price of a stock, a recipe for green bean soup, or a language The post Google JavaScript with Malte Ubl appeared first on Software Engineering Daily ....

Oct 22, 201857 min

Kotlin Design with Andrey Breslav

Kotlin is a statically typed programming language that started as a JVM language. It gained popularity because it reduces the amount of boilerplate code required for a typical Java project. Many of the early adopters of Kotlin were building Android apps or Java applications, but it has grown to a variety of use cases including The post Kotlin Design with Andrey Breslav appeared first on Software Engineering Daily ....

Oct 02, 201841 min

JavaScript Engines with Mathias Bynens

JavaScript performance has improved over time due to advances in JavaScript engines such as Google’s V8. A JavaScript engine performs compiler optimization, garbage collection, hot code management, caching, and other runtime aspects that keep a JavaScript program running efficiently. JavaScript runs in browsers and servers. The resources that are available to a JavaScript engine vary The post JavaScript Engines with Mathias Bynens appeared first on Software Engineering Daily ....

Sep 26, 201853 min

WebAssembly Engineering with Ben Smith and Thomas Nattestad

WebAssembly allows developers to run any language in a sandboxed, memory controlled module that can be called via well-defined semantics. As we have discussed in recent episodes with Lin Clark and Steve Klabnik from Mozilla, WebAssembly is changing application architectures both in and outside the browser. WebAssembly is being adopted by all of the major The post WebAssembly Engineering with Ben Smith and Thomas Nattestad appeared first on Software Engineering Daily ....

Aug 20, 201855 min

WebAssembly Future with Steve Klabnik

WebAssembly is a low-level compilation target for any programming language that can be interpreted into WebAssembly. Alternatively, WebAssembly is a way to run languages other than JavaScript in the browser. Or, yet another way of describing WebAssembly is a virtual machine for executing code in a low level, well-defined sandbox. WebAssembly is reshaping what is The post WebAssembly Future with Steve Klabnik appeared first on Software Engineering Daily ....

Aug 17, 201854 min

React Native at Airbnb with Gabriel Peal

React Native allows developers to reuse frontend code between mobile platforms. A user interface component written in React Native can be used in both iOS and Android codebases. Since React Native allows for code reuse, this can save time for developers, in contrast to a model where completely separate teams have to create frontend logic The post React Native at Airbnb with Gabriel Peal appeared first on Software Engineering Daily ....

Jul 27, 201854 min

WebAssembly with Lin Clark

JavaScript has been the exclusive language of the web browser for the last 20 years. Whether you use Chrome, Firefox, Internet Explorer, or Safari, your browser interprets and executes code in a virtual machine–and that virtual machine only runs JavaScript. Unfortunately, JavaScript is not ideal for every task we want to perform in the browser. The post WebAssembly with Lin Clark appeared first on Software Engineering Daily ....

Jul 20, 201853 min

React Stack with G2i Team

Most new frontend webapps today use ReactJS. An increasing number of mobile apps are created using the cross-platform components of React Native. GraphQL, Facebook’s open source data-fetching middleware tool is being used by more and more companies, who are finding that it simplifies their development. Facebook’s open source suite of technologies created a new developer The post React Stack with G2i Team appeared first on Software Engineering Daily ....

Apr 19, 201857 min

React Components with Max Stoiber

Modern frontend development is about components. Whether we are building an application in React, Vue, or Angular, components are the abstractions that we build our user interfaces out of. Today, this seems obvious, but if you think back five years ago, frontend development was much more chaotic–partly because we had not settled around this terminology The post React Components with Max Stoiber appeared first on Software Engineering Daily ....

Dec 21, 201747 min

Animating VueJS with Sarah Drasner

Most user interfaces that we interact with are not animated. We click on a button, and a form blinks into view. We click a link and the page abruptly changes. On the other hand, when we interact with an application that has animations, we can feel the difference. The animations are often subtle. If you The post Animating VueJS with Sarah Drasner appeared first on Software Engineering Daily ....

Dec 01, 201748 min

ReactVR with Andrew Imm

React is a programming model for user interfaces. ReactJS is for building user interfaces for web applications. React Native is for building UI on Android or iOS. ReactVR is for building user interfaces in virtual reality. React Native was originally developed to make it easier to maintain parity between the web, iOS, and Android teams The post ReactVR with Andrew Imm appeared first on Software Engineering Daily ....

Oct 02, 201757 min

Advertiser Bidding with Praneet Sharma

Content websites are supported by advertising. Most of the advertisements around the internet are dynamic ad slots that change depending on the user who visits the site. Those dynamic ad slots are available to a variety of different bidders. For each ad slot, an auction occurs. The highest bidder gets to serve an ad for The post Advertiser Bidding with Praneet Sharma appeared first on Software Engineering Daily ....

Aug 24, 201758 min

GatsbyJS with Kyle Mathews

GatsbyJS is a framework for building web applications for JavaScript. Gatsby’s original goal was to allow users to create super fast static web sites that could be hosted and served efficiently at a low cost. Most web pages have components from a framework like React or Angular that need to render after the user requests The post GatsbyJS with Kyle Mathews appeared first on Software Engineering Daily ....

Aug 17, 201752 min

TypeScript at Slack with Felix Rieseberg

Slack is an application for team communication. Users chat across mobile devices, web browsers, and a desktop application, which means Slack has three places to deploy on rather than two. And the desktop apps on Windows, Mac, and Linux are not identical, so Slack has even more places to deploy. With so many different runtime The post TypeScript at Slack with Felix Rieseberg appeared first on Software Engineering Daily ....

Aug 11, 201752 min

Lottie Animation with Brandon Withrow and Gabriel Peal

Animations make an application more fun and engaging. For most apps, animation is an afterthought. Developers are concerned with getting the functionality right, and designers have enough work to do simply getting icons, text formatting, and page layout correct. There is also the issue of cross-device compatibility. iOS, Android, and web have different ways of The post Lottie Animation with Brandon Withrow and Gabriel Peal appeared first on Software Engineering Daily ....

Aug 10, 201754 min

State of JavaScript with Sacha Greif

JavaScript is moving so fast. It’s not easy to keep up with all of the frameworks, build tools, and packages. No other language spans frontend to backend, mobile to web to server. Sacha Greif is an independent designer and developer most prominent in his roles as co-author of Discover Meteor and community builder at Sidebar.io, The post State of JavaScript with Sacha Greif appeared first on Software Engineering Daily ....

Aug 09, 201750 min

React Native Interfaces with Leland Richardson

Airbnb is a company that is driven by design. New user interfaces are dreamed up by designers and implemented for web, iOS, and Android. This implementation process takes a lot of resources, but it used to take even more before the company started using React Native. React Native allows Airbnb to reuse components effectively. React The post React Native Interfaces with Leland Richardson appeared first on Software Engineering Daily ....

Jul 07, 201749 min

React Native Ecosystem with Nader Dabit

React Native allows developers to reuse components from one user interface on multiple platforms. React Native was introduced by Facebook to reduce the pain of teams who were rewriting their user interfaces for web, iOS, and Android. Nader Dabit hosts React Native Radio, a podcast about React Native. Nader also trains companies to use React The post React Native Ecosystem with Nader Dabit appeared first on Software Engineering Daily ....

Jul 06, 201751 min

The Future of React Native with Brent Vatne and Adam Perry

React Native has unlocked native mobile development to web engineers who may now apply their skills to build iOS and Android applications in JavaScript. For the first time, cross platform JavaScript-based applications feel as if they were written in the native language of choice for the platforms. Businesses who choose to adopt React Native for The post The Future of React Native with Brent Vatne and Adam Perry appeared first on Software Engineering Daily ....

Apr 11, 201753 min

WebAssembly with Brendan Eich

Brendan Eich created the first version of JavaScript in 10 days. Since then JavaScript has evolved, and Brendan has watched the growth of the web give rise to new and unexpected use cases. Today Brendan Eich is still pushing the web forward across the technology stack with his involvement in the WebAssembly specification and the The post WebAssembly with Brendan Eich appeared first on Software Engineering Daily ....

Mar 31, 20171 hr 19 min

Inferno with Dominic Gannaway

Over the past few years, React has become the most popular front end JavaScript framework. As React has matured, the open source community around React has identified areas for improvement. Since React itself is too mature to refactor completely, new projects have been started to take the best aspects of React and start from scratch. The post Inferno with Dominic Gannaway appeared first on Software Engineering Daily ....

Jan 19, 201745 min

Reactive JavaScript with Ben Lesh

Netflix has a highly interactive user interface. As I move my mouse around the page, hovering over titles and inspecting movie descriptions, there is a lot going on under the hood. One component of this UI is RxJS, a library for building reactive JavaScript. Reactive programming uses the observer pattern to create objects that emit The post Reactive JavaScript with Ben Lesh appeared first on Software Engineering Daily ....

Oct 25, 201655 min
For the best experience, listen in Metacast app for iOS or Android
Open in Metacast