Live data from Hacker News

Show HN: Make your site’s pages instant in one minute

instant.page

1–10 of 361 posts

Re: Show HN: Make your site’s pages instant in one minute

#4
post #3
post #2

Sounds too good to be true, but also brilliant. Curious what others think. What are the downsides?

Thanks. The only downside is that you can expect twice the number of requests to your pages (only the pages themselves, not their assets).

And you're using a lot more of the users'bandwidth

Re: Show HN: Make your site’s pages instant in one minute

#5
This is a feature available on most web frameworks today (for example Link's prefetch on Next.js), but still could be very useful for smaller website and other static pages not using such frameworks.

I'd be a little wary of using a script from an unknown person without being able to look at the code - I'd rather see this open source before using. Especially being free and MIT licensed, I don't see why it wouldn't be open.

Re: Show HN: Make your site’s pages instant in one minute

#7
post #2

Sounds too good to be true, but also brilliant. Curious what others think. What are the downsides?

Increased load on your web server, but other than that zero! (You might even be able to mitigate the load with caching). It progressively enhances existing links if JavaScript is enabled.

There are other libraries that do similar things, such as InstantClick: http://instantclick.io/

Re: Show HN: Make your site’s pages instant in one minute

#8
post #3

Earlier quoted context omitted.

Thanks. The only downside is that you can expect twice the number of requests to your pages (only the pages themselves, not their assets).

And you're using a lot more of the users'bandwidth

You’re only preloading HTML, so it’s negligible compared to what trackers and ads do for instance.

Re: Show HN: Make your site’s pages instant in one minute

#10
post #5

This is a feature available on most web frameworks today (for example Link's prefetch on Next.js), but still could be very useful for smaller website and other static pages not using such frameworks. I'd be a little wary of using a script from an unknown person without being able to look at the code - I'd rather see this open source before using. Especially being free and MIT licensed, I don't see why it wouldn't be…

In the technical details, he has a link to the open source on github. Here's the js that's actually doing the preloading: https://github.com/instantpage/instant.page/blob/master/inst...
Post reply on HN