Deno is a free and open source JavaScript runtime built on Google’s V8 engine, Rust, and Tokio. The project was announced by Ryan Dahl in 2018 with the goal of addressing shortcomings of Node.js, which Ryan also created. Since then, the Deno project has grown tremendously in popularity, and they recently announced Deno KV which The post Deno with Luca Casonato appeared first on Software Engineering Daily ....
Dec 13, 2023•46 min
One of the key challenges that teams encounter is how to smoothly collaborate on converting a design into code. For example, if a designer designs a web component, how can it be most efficiently implemented by a developer? What happens if the designer needs to adjust the design and communicate this change to the developer? The post Figma Dev Mode with Marcel Weekes appeared first on Software Engineering Daily ....
Nov 15, 2023•56 min
Frontend web frameworks are software toolkits that handle many of the low-level and repetitive aspects of building a website. These frameworks have made it easier than ever to build a modern website. The open-source Astro framework was created in 2021 for the purpose of creating simple static sites that load quickly. A key factor to The post The Astro Framework with James Quick appeared first on Software Engineering Daily ....
Nov 14, 2023•45 min
Documentation is something that everyone knows is important but it’s often difficult to get right. On software teams, good documentation can help to onboard new people, improve communication across teams, and troubleshoot technical issues. When an application, API, or library is a commercial product, the quality of its documentation can determine whether it attracts The post GitBook with Addison Schultz appeared first on Software Engineering Daily ....
Oct 31, 2023•38 min
React is an immensely popular JavaScript library that is used to build website user interfaces. A key feature of React is that it uses a virtual Document Object Model, or DOM, to selectively update the desired regions of the web page, which provides major performance advantages. Million.js is an open source project that provides an The post Making React 70% faster with Aiden Bai of Million.js appeared first on Software Engineering Daily ....
Sep 05, 2023•45 min
Serverless backend platforms are cloud services that simplify the process of building a backend. These platforms are growing rapidly in popularity because they can greatly accelerate application development, and improve the developer experience. Convex is a real-time backend platform that uses 100% TypeScript and is designed with reactive UI frameworks in mind. The team behind The post Building a Full Cloud Backend with James Cowling appeared first on Software Engineering Daily ....
Aug 29, 2023•53 min
Tom Preston-Werner is a renowned software developer, inventor and entrepreneur. He co-founded GitHub and is the creator of the avatar service Gravatar, the TOML configuration file format, and the static site generator software Jekyll. Tom is currently working on the full-stack web framework, RedwoodJS. He joins us today to tell us the latest about RedwoodJS, The post The Latest on RedwoodJS with Tom Preston-Werner appeared first on Software Engineering Daily ....
Aug 22, 2023•1 hr 7 min
Netlify is a cloud-based platform that provides web developers with an all-in-one workflow to build, deploy, and manage modern web projects. Matt Biilmann is the CEO of Netlify and he joins us today. This episode is hosted by Mike Bifulco. To learn more about Mike visit mikebifulco.com Sponsorship inquiries: [email protected] The post Netlify with Mathias Biilmann Christensen appeared first on Software Engineering Daily ....
Mar 02, 2023•53 min
Remix is a full stack web framework that lets you focus on the user interface and work back through web fundamentals to deliver a fast, slick, and resilient user experience that deploys to any Node.js server and even non-Node.js environments at the edge like Cloudflare Workers. In this episode, we interviewed Ryan Florence, co-founder at The post Remix with Ryan Florence appeared first on Software Engineering Daily ....
Jul 22, 2022•44 min
Convex makes storing your application’s data as easy as using React state management. If you can use React hooks, you can also manage your backend data using Convex. James Cowling is a former Dropbox infrastructure engineer turned startup founder. James joins the show to discuss how Convex offers a simpler full-stack developer experience than the The post Global State Management with James Cowling appeared first on Software Engineering Daily ....
Jun 02, 2022•31 min
Highlight is a tool that helps teams reproduce end-to-end user sessions to troubleshoot their applications faster, more efficiently, and with all the context they need. With Highlight, engineering teams can replay errors with high precision, which includes complete session replay, outgoing network requests, dense stack traces and insight into the app’s state management system. Jay The post Browser Observability With Jay Khatri appeared first on Software Engineering Daily ....
May 20, 2022•44 min
The JavaScript supply chain includes numerous vulnerabilities due to its expansive nature and the long dependency chains. Socket is a new security company that can protect your most critical apps from supply chain attacks. They are taking an entirely new approach to one of the hardest problems in security in a stagnant part of the The post JavaScript Supply Chain with Feross Aboukhadijeh appeared first on Software Engineering Daily ....
Apr 23, 2022•45 min
When you visit a web page, the creator’s intent is to present you a seamless experience that fills your browser window. That web page or web application is generally divided up in some meaningful way across navigation elements, content, ads, header, footer, and other components. Those components may represent the work of independent teams. Typically The post Micro-Frontends with Luca Mezzalira appeared first on Software Engineering Daily ....
Feb 15, 2022•47 min
The React Framework has seen continuous growth of adoption since its launch. There are many reasons for that, but one reason is how relatively painless it is to use `react-create-app` or copy some boilerplate code and have a functioning, hot reloading, live demo up and running in minutes. There is, however, a long way to The post Enterprise React Apps with Paige Niedringhaus appeared first on Software Engineering Daily ....
Nov 02, 2021•46 min
According to builtwith.com, more than 10 million websites are powered by React framework. Of the top 10k sites by traffic, 44.7% of those are built with React. This javascript framework is capable of powering a wide array of modern applications and remains fairly beloved by developers that use it. In this episode, I interview Kent The post Learning React with Kent C. Dodds appeared first on Software Engineering Daily ....
Oct 29, 2021•51 min
As our guest today points out, most enterprise software applications are essentially forms for collecting data. The <FORM> tag and related components started appearing in HTML fairly early and those same concepts are still in use with modern web browsers. However, the technology for capturing state, validating input, and providing other common services for the The post React Final Form with Erik Rasmussen appeared first on Software Engineering Daily ....
Oct 07, 2021•39 min
As developers hone their craft, becoming more productive often means learning utilities and tools at the command line. The right combination of various parsing commands chained together through pipes can enable engineers to quickly and efficiently automate many adhoc data processing tasks. In this episode I speak with Adam Gordon Bell about some of his The post Earthly and CLI Productivity with Adam Gordon Bell appeared first on Software Engineering Daily ....
Sep 15, 2021•44 min
“In October 1958, Physicist William Higinbotham created what is thought to be the first video game. It was a very simple tennis game, similar to the classic 1970s video game Pong, and it was quite a hit at a Brookhaven National Laboratory open house” (aps.org). 63 years have passed, and video games are prolific. The The post Pragma: Video Games with Eden Chen appeared first on Software Engineering Daily ....
Aug 20, 2021•59 min
Flutter is a UI toolkit developed by Google that helps developers build natively compiled applications for mobile, web, desktop, and embedded devices from a single code base. Development is fast because the screen “hot reloads” as you develop, the architecture is layered for fast and expressive designs, and its widgets incorporate all critical platform differences The post Flutter: Native Web and Mobile App Development with Allen Wyma appeared first on Software Engineering Daily ....
May 29, 2021•48 min
The typical procedure many companies follow to reach production-level code is design the program, code and test it in different environments, and put it in a pipeline to deploy to production. Developers can make it pretty far into building their core features before inevitably breaking to include enterprise features and security standards like Single Sign The post WorkOS: Making Enterprise-Ready Apps with Michael Grinich appeared first on Software Engineering Daily ....
Apr 05, 2021•46 min
WordPress is a free and open-source content management system, or CMS, written in PHP. Since its release in 2003, WordPress has become ubiquitous on the web. It is estimated that roughly 60 million websites use WordPress as a CMS. However, despite its popularity, WordPress has limitations in its design. WordPress sites are dynamic, and the The post PHP with Zeev Suraski appeared first on Software Engineering Daily ....
Mar 04, 2021•48 min
Rust and Golang are two of the newest lower level languages for doing systems programming. They are often used for applications such as file systems, operating systems, and latency-sensitive applications. How do they compare in terms of safety, speed, and programming ergonomics? Linhai Song is an assistant professor and researcher at Penn State University, and The post Rust and Go Research with Linhai Song appeared first on Software Engineering Daily ....
Jan 20, 2021•50 min
Originally published March 6, 2020 ReactJS developers have lots of options for building their applications, and those options are not easy to work through. State management, concurrency, networking, and testing all have elements of complexity and a wide range of available tools. Take a look at any specific area of JavaScript application development, and you The post React Best Practices with Kent Dodds (Repeat) appeared first on Software Engineering Daily ....
Dec 23, 2020•53 min
Originally published July 7, 2017 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 The post React Native Interfaces with Leland Richardson (Repeat) appeared first on Software Engineering Daily ....
Dec 21, 2020•49 min
Originally published December 20, 2018 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 The post Modern Front End: React, GraphQL, VR, WebAssembly with Adam Conrad (Repeat) appeared first on Software Engineering...
Dec 14, 2020•59 min
Originally published March 31, 2017 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 post WebAssembly with Brendan Eich (Repeat) appeared first on Software Engineering Daily ....
Dec 08, 2020•1 hr 22 min
Originally published July 27, 2018 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 The post React Native at Airbnb with Gabriel Peal Holiday Repeat appeared first on Software Engineering Daily ....
Nov 25, 2020•54 min
The JavaScript ecosystem has millions of packages. How do you choose from those packages to find the best in breed for your projects? OpenBase is a system for searching and discovering JavaScript packages. OpenBase includes reviews, insights, and statistics around these JavaScript packages. Lior Grossman is a founder of OpenBase, and joins the show to The post OpenBase: JavaScript Package Selection with Lior Grossman appeared first on Software Engineering Daily ....
Nov 18, 2020•44 min
Internal tools are often built with Ruby on Rails or NodeJS. Developers create entire full-fledged applications in order to suit simple needs such as database lookups, dashboarding, and product refunds. This internal tooling creates a drain on engineering resources. Retool is a low-code platform for creating internal tools. These internal tools can be written by The post Retool with David Hsu appeared first on Software Engineering Daily ....
Nov 13, 2020•48 min
For all the advances in software development over the years, one area that has seen minimal improvement is the terminal. Typing commands into a black text interface seems antiquated compared to the dynamic, flashy interfaces available in web browsers and modern desktop applications. Fig is a visual terminal assistant with the goal of changing that. The post Fig: Visual Terminal Assistant with Brendan Falk and Matt Schrage appeared first on Software Engineering Daily ....
Oct 22, 2020