Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including netgear with all npm packages installed. Try it out:

/* eslint-disable no-console */ /* eslint-disable import/no-unresolved */ // testing from runkit is not (yet) supported. // please try testing from a desktop (see test.js) const NetgearRouter = require('netgear'); const router = new NetgearRouter({ password: 'password' }); router.getCurrentSetting() .then(console.log) .catch(console.log); router.login() .then(() => { router.getInfo() .then(console.log) .catch(console.log); router.getAttachedDevices() .then(console.log) .catch(console.log); }) .catch(console.log);

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

netgear v4.4.2

Node module to interact with Netgear routers via SOAP

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free