Git Product home page Git Product logo

jsconf2019-special's People

Contributors

mohamed3on avatar rmehner avatar saravieira avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

jsconf2019-special's Issues

Talk Proposal: You Don't Know Your Dependencies

If you’re building applications chances are your dependency tree is in the order of hundreds. That can easily scale up to at least a thousand for large applications (like popular OS projects Ghost or Keystone).
Join me in my hindered journey to address a big elephant in the room: managing dependencies. Updating a dependency or following common practices shouldn’t have to be a mysterious thing.
What’s the right thing to do in your package.json? Exact versions? Using a caret? What’s the reason behind lockfiles? What type of tooling is out there? I’ll present answers from my research to these common questions.

Talk duration: 25 minutes
Edit: talk duration 10 minutes

Talk Proposal: Frontend Application Bundles, the Docker of Frontend

Frontend apps are on the cusp of a revolution—React is about to launch a streaming server renderer that massively improves performance on both low-end and high-end devices. It's a new dawn for performance & accessibility, but raises another question? How should we host the server component? Can we do that without vendor lock-in?

Enter FABs (Frontend Application Bundles), a portable, compact, immutable, server-side JS format that lets you deploy anything from static sites or Next.js to full custom server-rendered React apps anywhere that can run JS, like Cloudflare Workers, Lambda@Edge, Now, etc. Finally, we can have a toolchain that supports the full breadth of frontend projects & server environments, without locking everything to a single host.


My talk aims to draw parallels between the server world of a decade ago & the frontend world of today. In the past, companies like AWS & Heroku were innovating & offering exciting new products, but users had to make a choice of which one to use and lock-in their development to target that platform. Today, it's exciting offerings from platforms like Now and Netlify, but all their innovation is locked down inside their ecosystem.

Docker changed that in a profound way, and FABs are poised to do the same thing. So this talk is a prediction of the future—that with React's new streaming renderer, a lot more companies will be looking to add a server-side component, and a standard, interoperable bundle format like FABs makes that much more accessible.

The project is still in its early stages, and this talk will be a draft of the proper FAB "launch" at React Rally later this year, but I'd love the chance to put this new idea out there and get feedback from a new audience!

Talk Proposal: Johnny-Five and the Rise of JavaScript Hardware

Abstract

Johnny-Five was created 6 years ago and in the process kickstarted the JavaScript robotics movement and JavaScript based IoT. J5, as we call it, has been around ever since the rise of modern IoT, and the project has a lot to teach us.

JavaScript and J5 brings a lot to the table for hardware. The asynchronous nature of JavaScript fits perfectly with real-world sensors, and the digital UI origins of JavaScript dovetail nicely with the physical UI of hardware. Most importantly, we focused the project on non-experts and we cultivated a welcoming, inclusive community.

Knowing these lessons and more are critical going forward if we hope to create open and ethical IoT ecosystem.

Details

This talk will have the following outline:

  • Why JavaScript for Hardware?
  • Overview of using Johnny-Five
  • The importance of OSS and Community

Previous Recording

https://www.youtube.com/watch?v=tJV-qb8a4y8

Talk Proposal: The Node.js Event Loop: Not So Single Threaded

Abstract

You've probably heard, and possibly lamented, that Node.js is single threaded. It's true that all JavaScript executed by Node.js is run in a single thread. This means each JavScript file you write, module you require, and even Node.js itself, all contend for processing time.

But JavaScript isn't the only code in Node.js. There's also a lot of C++, most important of which is the event loop. One of the event loops responsibilities is to manage a set of threads called the thread pool. As it turns out, most C++ code in Node.js is multithreaded!

Come learn how the event loop works in detail, how it affects the performance of your app, and how you can use this knowledge to your advantage!

Details

This talk will have the following outline:

  • A brief history of multitasking
  • Which parts of Node.js are single threaded, and which parts are multithreaded
  • A series of illustrative examples that defines behavior
  • What actually is the event loop?

Previous recording

https://www.youtube.com/watch?v=zphcsoSJMvM

Talk Proposal: A Partial Taxonomy Of Test Unreliability

A Partial Taxonomy of Test Unreliability

Ah, those vexing tests that fail once in a while but pass as soon as you re-run them. Don’t you hate those things? I hate those things. And Node.js core used to have quite a problem with them. Will a fast-paced run-through of causes that are then placed into a maybe-possibly helpful taxonomy be useful? I don’t know! Maybe we’ll find out! Together! Like a team! Go team!

We’ll cover all your favorite classics like race conditions, deadlocks, side effects, you name it! We’ll also include b-sides and deep cuts that we had to invent names for, names that usually end up sounding like basketball teams. And we’ll talk about tools and techniques for reproducing and debugging these often-hard-to-reproduce-and-debug problems in tests. This talk is not to be missed, but that’s primarily because BerlinJS presumably only has one talk going at any given time, so what else would you be doing?

Talk duration: 20 minutes-ish

Talk Proposal: Scaling front-end development

Abstract

Atlassian Jira's front-end has been going through massive transformation over the last two years. With our new front-end codebase starting from 0 and now over 1,200,000 lines of code, 200 packages, and over 180 contributors every month across many teams, we've faced a number of challenges in scaling our development practices to keep up.

Learn about the principles and processes we've developed along the way to bring structure to this growth, allowing us to maintain consistency and minimise overhead, all while bringing us closer to achieving our goal of building a world class front-end architecture.

More info

This talk is an insight into the problems faced as your front-end codebase goes through rapid growth, and some strategies and techniques you can apply in order to manage this growth while maintaining consistency, and delivering customer value.

Variants of this talk have been given and well received in the past - by me at Web Directions Code in 2018, and another member of my team at JS Kongress, and also at ViennaJS and other meetups.

Talk Proposal: Are GraphQL and Microservices Good Friends?

Abstract

Having several microservices exposing their APIs through an API Gateway isn't uncommon, and it is also expected that we require communication between those microservices. I am currently working on a project with some microservices in Node.js where the communication between them and the clients was kind of a mess.

In this talk, I am going to show you some different options I have explored in order to address this communication; how we improved it with GraphQL and the outcomes of it. By the end of the talk, you will find out if GraphQL and Microservices are Good Friends.

About me

Previous Talks

I have spoken before in meetups, but not in International Conferences, so I have not video recordings of it. This talk would be my second one in English, which is not my mother tongue.

Talk time

15-20 Minutes

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.