
Free Network and Geo Analysis Tools
The best one we have. Offers the best coverage and high data transfer speed. Works with Raspbian/OpenELEC "out of the box".
- Chipset: Realtek 8192CU (HX9700)
- WiFi: 2.4Ghz IEEE802.11b/g/n
- USB 2.0
- Max. 300Mbps
- WPS
- 5dBi RP-SMA antenna
- Access Point mode supp
Your config.js will then resemble this:
module.exports = { appName: "MyNews", basePath: "https://mydomain.com", enableCategories: false, accentColor: "#6699cc", flavors: { default: { name: "MyFeed", localeName: "en", defaultForLanguages: ["en"], cssFile: "./assets/css/default.css", url: "https://mydomain.com/feed/", //defaultImage: "<URL or base64 Data-URL>", categories: [ ], isRTL: false }, } };
We need to make
We need to make one more change so that you can run tests on your brand new instance of AnyNews. Modify the file public/proxies.js to indicate that access to your service URL will be proxied through the Node Package Manager development environment while you are testing. In the class ProxyHandlerClass, you'll notice that this.proxies is set to use "/localproxy". Leave that in place. Immediately below, change this.proxiedUrls from https://www.nasa.gov to the basePath URL you used in config.js (again, no trailing slash). If you used an empty path as the basePath in config.js, supply the scheme and domain here. In our sample above we have https://www.mydomain.com. As a result, the top portion of your public/proxies.js file will look like:
// eslint-disable-next-line (function () { class ProxyHandlerClass { constructor() { this.proxies = [ // // -- enable /localproxy for testing/development // "/localproxy" // // -- if you're proxying, insert your proxy URLs here (no trailing slash) // // "https://your.proxy.here" // "https://your.proxy2.here" // .. ]; // // --* same URL as 'basepath' on src/config.js // Make sure there is no trailing slash on this URL // this.proxiedUrls = [ "https://www.mydomain.com" ]; this.idxCurrentProxy = 0; this.useDevServer = false; this.useStaticProxy = false; // Set to true to replace all URLs in incoming data this.setRandomProxy(); // Init to random } ...
Return to the AnyNews top-level directory once you've made these modifications and run the following command:
npm run serve
NOTE: If you DID NOT run the demonstration above, you'll need to initialize npm here, so instead run: