130 questions
0
votes
0
answers
87
views
Create website that uses ES modules yet can be saved locally
Is it possible to create a single-page website hosted on static hosting (no custom headers etc.) that uses ES modules in external .js files and still can be saved as "Website, complete" in ...
0
votes
1
answer
125
views
How to avoid CORS issues when creating an Offline Website? [closed]
For the purposes of authoring HTML content that is intended to be viewed offline, for example:
when distributed on a USB thumb drive as documentation accompanying a physical product
as promotional ...
0
votes
0
answers
78
views
How can I make my website available offline through a Firefox extension?
I have a website that I write code for just to try out new things I learn about in web dev. I also want to get into Firefox extension creation, which I've already somewhat started with.
I know that ...
6
votes
2
answers
11k
views
How to make my single-HTML web page available offline in Chrome?
I'm hosting a single-HTML web page (all design elements included in the .html file itself) on my webserver, and I'd like to make it available for my users when they are offline. It should work like ...
65
votes
6
answers
39k
views
How do I download MDN JavaScript documentation for offline use? [closed]
I am trying to make MDN's Javascript Reference available for offline browsing (personal use). To spare me from running some sort of web crawler program or saving individual pages to create a local ...
0
votes
1
answer
949
views
How do I deactivate the internet entirely with Firefox's developer tools?
I'm developing in Firefox and was asked today to test connectivity drops. How do I simulate this from the developer tools? All I can see in the network tab is speed throttling, ranging from GPRS to ...
5
votes
4
answers
13k
views
Flutter Making an Image.file() image into an ImageProvider() for zoomable photos
I've created an app that downloads a bunch of information for off-line use, much of which are photos. In the app, I'd like to use a widget that allows me to have a pan/zoom effect, but the ones I've ...
0
votes
1
answer
683
views
How can I grab this website content without losing javascript content
I want to download this website
Abd i tried idm and httrack but didn't work for javascript content
http://websdr.uk:8074/
Anyone can help me to download this frequency streaming content,
Thank you
2
votes
1
answer
589
views
Service Worker Strategy for Cached First Scenario - Preloading Screen
I'm currently working on a small web app which should implement a cached first scenario (users download the wep app in a wifi provided base and then should be able use it offline outside)
I'm not ...
2
votes
1
answer
969
views
Offline PWA not behaving as expected on phones. Asks for connectivity despite caching all relevant files
I am trying to make an offline PWA planner targeted to phones and I have no need at all for user data or interaction with my home page after installation.
Everything works fine on my PC and Lighthouse ...
3
votes
2
answers
898
views
ODM/ORM for PouchDB in JavaScript
I'm interested in using PouchDB for a offline-first mobile application (Cordova) and I'm wondering if there is any leightweight ORM/ODM for PouchDB written in JavaScript. Couldn't find one.
Is PouchDB ...
80
votes
6
answers
106k
views
Does Chrome have a "Work Offline" option?
I'm trying to test out my fallback page in my html5 cache manifest. I'd rather not have to actually disconnect from the internet in order to do it. I've heard that it doesn't work quite right in ...
6
votes
3
answers
3k
views
How to detect if browser is offline in 2018?
There used to exist offline.js for detection of a connection, but that project is no longer maintained. Also, the browser's 'navigator.onLine' property is notoriously unreliable.
What is the best/...
13
votes
5
answers
13k
views
Vuetify Offline Docs
I have started using Vuetify to add ui-components and use pre-defined layouts. The problem is that I have to look into online-docs every now and then, and requires me to be connected to internet ...
15
votes
3
answers
8k
views
Is there a way to use a CDN (for jQuery) and have an offline Web app (via HTML5 manifests)?
I'm beginning to look at HTML5s ability to allow for offline Web applications.
A while back I found that using a CDN worked well for my applications, so I've been sticking with them, mostly just for ...
3
votes
4
answers
5k
views
Download a working local copy of a webpage as a single html file
I followed the instructions provided in this previous post. I am able to download a working local copy of the webpage (e.g. wget -p -k https://shapeshed.com/unix-wget/) but I would like to integrate ...
7
votes
3
answers
6k
views
How can one download Mozilla's developer's documentation for offline reading?
Until recently, one could conveniently download Mozilla's developer's documentation, developer.mozilla.org.tar.gz, for offline reading. However, Mozilla seems to have upgraded the documentation to a ...
27
votes
3
answers
14k
views
iOS: Did Apple disable HTML5 offline capability for web apps saved to the home screen?
I've been doing lots of work in getting a few web apps to work offline on iOS using the HTML5 manifest. I've ran across the typical problems everyone else has and fixed them and everything seems to be ...
4
votes
0
answers
744
views
Download complex 3D JS/Canvas webpage for offline
I'm attempting to download a truly offline version of this interactive 3D model of a home, as seen on this webpage: https://my.matterport.com/show/?m=bDbFD5mSEb5&play=1&lang=en
Because it ...
3
votes
1
answer
6k
views
How can I make "Service Worker" work in local network?
I am building app with Angular 6 and I want this app to work offline and I am using Angular 6 with Service Worker and I want to host this app in local server with IIS but I do not have HTTPS cert.
...
0
votes
2
answers
584
views
Javascript database on browser hard-drive
Background:
We're writing an HTML5 offline first application for Chrome Browsers.
We are targeting specifically Chrome Browsers, and we don't want to make an extension to serve the functionality of ...
0
votes
1
answer
71
views
How does the JavaScript ofline serviceworker example work?
The page at
https://googlechrome.github.io/samples/service-worker/basic/
has all the script you need for getting started with modern offline web pages. I spent many fruitless hours researching the ...
1
vote
0
answers
299
views
indexedDB create multiple ObjectStore simultaneously
In my case, I am creating an offline web app. And want to store the API response in the IndexDB.
In a particular page, I have three to four APIs hitting the server, and I want to store all of the ...
-3
votes
2
answers
439
views
Social Media Icons disappeared on my Online Website while they appeared on my offline website [closed]
Social Media Icons disappeared on my Online Website while they appeared on my offline website:
Icons appear in yellow circles in my Offline Website
Icons disappear in yellow circles in my Online ...
241
votes
1
answer
253k
views
Download a working local copy of a webpage [closed]
I would like to download a local copy of a web page and get all of the css, images, javascript, etc.
In previous discussions (e.g. here and here, both of which are more than two years old), two ...
5
votes
1
answer
2k
views
ServiceWorker handling fetch events to URLs outside scope
My site registers a ServiceWorker which is scoped to only URLs beginning with /sw/....
/**
* Register the Service Worker.
*/
if ('serviceWorker' in navigator) {
navigator.serviceWorker
...
0
votes
0
answers
277
views
Viewing websites offline - how to get around unneeded ajax and jquery manipulation?
I am trying to view a webpage offline. The page is profoundly simple. It has a javascript video player that is interacting with an HTML5 video element. The video element specifies a url for a video. ...
0
votes
1
answer
259
views
How to save a webpage offline that is rendered with ember-cli-fastboot?
I am trying to save a webpage for offline viewing but not exactly having luck.
The page is fairly intricate, as it involves javascript audio and video players, HTML embedded media.
On top of that, ...
0
votes
1
answer
374
views
Browser storage IndexedDB can be used for storing static files like css and some js file?
I want to made offline first web application.
If a network is not available then data and css files should be load from indexedDB.
I may be wrong or this requirement look like weird but want to know ...
1
vote
2
answers
228
views
Cache Google AppEngine documentation locally for offline use
The biggest problem when developing offline is the unavailability of documentation.
Google AppEngine used to provide a downloadable tar ball of its documentation, but doesn't seem to do so any more. ...
3
votes
2
answers
1k
views
iOS 7.1.1 Safari browser messing up with online/offline status
I have a cross browser online/offline test for a webpage designed to work on multiple browsers.
It works with the free indicators :
event listener on window
event listener on document.body
polling of ...
2
votes
2
answers
2k
views
Does Meteor-JS support offline storage/cache?
Does Meteor-JS support offline storage/cache?
From what I'm reading: https://guide.meteor.com/collections.html :
Instead, on the client, a collection is a client side cache of the
database. This ...
0
votes
1
answer
82
views
How to Check that how much offline storage has been Used
I am using offline storage and want to clear it when storage memory is full. All I want is to know that how to get used storage. I am using the following code to clear offline storage:
localStorage....
0
votes
0
answers
863
views
Selenium Webdriver--- Switch off the browser connection during test
I would like to know if it is possible to switch off browser connection during the test or is the webdriver can interact with browser console? Take chrome as an example, can I open the console during ...
3
votes
1
answer
398
views
Which is better to make a web application offline -application cache or service worker?
I want to make my web application available even if network is not preset or when user is offline.
I searched about this and find two solution:
1) use Application cache
2) use Service worker
As ...
1
vote
0
answers
2k
views
save web page for offline usage, including ALL resources (loading in js)
So the goal is - I have a web page, and I want to embed it in a webview in an android app, but I need this page working offline. So I came to a solution to save the whole page with all files, I tried ...
2
votes
1
answer
99
views
Force device to cache linked pages for offline use
I have created a progressive web app that simply lists links (to URLs) that when clicked uses the default browser of the device (say mobile phone) to open the URL.
Is there a way to tell the device ...
1
vote
2
answers
1k
views
Internet Explorer and Firefox do not stay in offline mode when localhost
Localhost.
IE10 / Firefox 24
I am testing some caching options in my application and want to set Internet Explorer and Firefox in Work Offline mode. The browsers work fine for cached pages but ...
14
votes
3
answers
4k
views
Is it OK to include external files in cache-manifest?
I'm building an offline web application and want to use cache-manifest. Currently my cache-manifest looks like this:
CACHE MANIFEST
# Change the version number below each time we update a resource.
# ...
20
votes
7
answers
10k
views
Once an HTML document has a manifest (cache.manifest), how can you remove it?
It seems that once you have a manifest entry, a la:
<html manifest="cache.manifest">
Then that page (the master entry in the cache) will always be cached (at least by Safari) until the user ...
1
vote
0
answers
2k
views
symfony2 on/offline web application
Im looking for the best way to build an on/offline application with symfony2. I need some advice here:
Users can access the application from navigator on their computer or from tablet (like iPad)
When ...
0
votes
1
answer
493
views
Infinite scrolling doesn't work offline
I am trying to learn jQuery and particularly jScroll from real examples. I found this website that might look silly to you but it's dead simple so it's a great example of jScroll work for me.
The ...
4
votes
0
answers
1k
views
Chrome vs Firefox XHR request differences
While playing with XHR requests I found interesting thing in making XHR requests from 2 major browsers - Google's Chrome and Mozilla's Firefox.
Request was simple HEAD request to www.google.ba:
var ...
1
vote
1
answer
182
views
Using the StackExchange API to search on keywords
I'm thinking about writing an app that lets you download data from StackOverflow. There is one caveat: I want to download data that contains specified keywords. For example: if you search for "How do ...
1
vote
1
answer
107
views
Opening up PDFs locally on device with PhoneGap
How can I open up a pdf file locally on my device through my app? I used window.open to try an open up the pdf but it won't work. Is there another way to achieve this?
By the way I'm using AppPresser'...
2
votes
1
answer
990
views
Angular2 online / offline event
Is there a native Angular2 event to notify when the application loses / regains network connectivity?
Or a wrapper for window.navigator.online / offlinejs?
0
votes
1
answer
17
views
Prevent specific cached pages from trigging application cache updates
I'm making a web app that allows users to login in offline but only if they have logged in prevously online. The issue that I'm having is that for the user to be able to login offline, I need to cache ...
1
vote
1
answer
4k
views
Firefox is currently in offline mode and can't browse the Web - Offline App Test
For testing purpose I tried to switch to offline mode (File > Work offline), and upon refresh, it showed "Firefox is currently in offline mode and can't browse the Web."
When I clicked "Try Again" it ...
4
votes
0
answers
440
views
How to save webpage from UIWebview for Offline Browsing
Does anyone have idea, how to download HTML page from UIWebview along with the resources - for offline storage, so user will be able to access web page, even when there is no internet.
It should be ...
0
votes
1
answer
286
views
Making website work offline with data sharing between LAN connected systems
HTML5 supports online web storage which can help in making our website to work offline. But, how can one share data between systems that are connected through LAN when offline?
The requirement is:
...