Cropped Chrome logo on the left, version number on the right.

New in Chrome 63

Published on

And there's plenty more!

I'm Pete LePage. Let's dive in and see what's new for developers in Chrome 63!

Want the full list of changes? Check out the Chromium source repository change list.

Dynamic module imports

Importing JavaScript modules is super handy, but it's static, you can't import modules based on runtime conditions.

Thankfully, that changes in Chrome 63, with the new dynamic import syntax. It allows you to dynamically load code into modules and scripts at runtime. It can be used to lazy load a script only when it's needed, improving the performance of your application.

button.addEventListener('click', event => {
import('./dialogBox.js')
.then(dialogBox => {
dialogBox.open();
})
.catch(error => {
/* Error handling */
});
});

Instead of loading your whole application when the user first hits your page, you can grab the resources you need to sign in. Your initial load is small and screaming fast. Then once the user signs in, load the rest, and you're good to go.

Async iterators and generators

Writing code that does any sort of iteration with async functions can be ugly. In fact, it's the core part of my favorite interview coding question.

Now, with async generator functions and the async iteration protocol, consumption or implementation of streaming data sources becomes streamlined, and my coding question becomes much easier.

async function* getChunkSizes(url) {
const response = await fetch(url);
const b = response.body;
for await (const chunk of magic(b)) {
yield chunk.length;
}
}

Async iterators can be used in for-of loops and also to create your own custom async iterators through async iterator factories.

Over-scroll behavior

Scrolling is one of the most fundamental ways to interact with a page, but certain patterns can be tricky to deal with. For example, the browsers pull to refresh feature, where swiping down at the top of the page, does a hard reload.

Before, with full page refresh.
After, refresh only the content.

In some cases, you might want to override that behavior and provide your own experience. That's what Twitter's progressive web app does, when you pull down, instead of reloading the whole the page, it simply adds any new tweets to the current view.

Chrome 63 now supports the CSS overscroll-behavior property, making it easy to override the browser's default overflow scroll behavior.

You can use it to:

The best part, overscroll-behavior doesn't have a negative effect on your page performance!

Permission UI changes

I love web push notifications but I've been really frustrated by the number of sites asking for permission on page load, without any context - and I'm not alone.

90% of all permission requests are ignored or temporarily blocked.

In Chrome 59, we started to address this problem by temporarily blocking a permission if the user dismissed the request three times. Now in m63, Chrome for Android will make permission requests modal dialogs.

Remember, this isn't just for push notifications, this is for all permission requests. If you ask permission at the appropriate time and in context, we've found that users are two and a half times more likely to grant permission!

And more!

These are just a few of the changes in Chrome 63 for developers, of course, there's plenty more.

  • finally is now available on Promise instances and is invoked after a Promise has been fulfilled or rejected.
  • The new Device Memory JavaScript API helps you understand performance constraints by giving you hints about the total amount of RAM on the user's device. You can tailor your experience at runtime, reducing complexity on lower end devices, providing users a better experience with fewer frustrations.
  • The Intl.PluralRules API allows you to build applications that understand pluralization of a given language by indicating which plural form applies for a given number, and language. And can help with ordinal numbers.

Be sure to subscribe to our YouTube channel, and you'll get an email notification whenever we launch a new video.

I'm Pete LePage, and as soon as Chrome 64 is released, I'll be right here to tell you -- what's new in Chrome!

Published on Improve article

Back

The Device Memory API

Next

What's New In DevTools (Chrome 63)

This site uses cookies to deliver and enhance the quality of its services and to analyze traffic. If you agree, cookies are also used to serve advertising and to personalize the content and advertisements that you see. Learn more about our use of cookies.