8889841cREADME.md000066600000000324150443534040006030 0ustar00# os-browserify The [os](https://nodejs.org/api/os.html) module from node.js, but for browsers. When you `require('os')` in [browserify](http://github.com/substack/node-browserify), this module will be loaded. .npmignore000066600000000124150443534040006546 0ustar00lib-cov *.seed *.log *.csv *.dat *.out *.pid *.gz pids logs results npm-debug.log browser.js000066600000001717150443534040006601 0ustar00exports.endianness = function () { return 'LE' }; exports.hostname = function () { if (typeof location !== 'undefined') { return location.hostname } else return ''; }; exports.loadavg = function () { return [] }; exports.uptime = function () { return 0 }; exports.freemem = function () { return Number.MAX_VALUE; }; exports.totalmem = function () { return Number.MAX_VALUE; }; exports.cpus = function () { return [] }; exports.type = function () { return 'Browser' }; exports.release = function () { if (typeof navigator !== 'undefined') { return navigator.appVersion; } return ''; }; exports.networkInterfaces = exports.getNetworkInterfaces = function () { return {} }; exports.arch = function () { return 'javascript' }; exports.platform = function () { return 'browser' }; exports.tmpdir = exports.tmpDir = function () { return '/tmp'; }; exports.EOL = '\n'; exports.homedir = function () { return '/' }; main.js000066600000000040150443534040006026 0ustar00module.exports = require('os'); LICENSE000066600000002065150443534040005562 0ustar00The MIT License (MIT) Copyright (c) 2017 CoderPuppy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. package.json000066600000000554150443534040007044 0ustar00{ "name": "os-browserify", "version": "0.3.0", "author": "CoderPuppy ", "license": "MIT", "main": "main.js", "browser": "browser.js", "jspm": { "map": { "./main.js": { "node": "@node/os", "browser": "./browser.js" } } }, "repository": { "type": "git", "url": "http://github.com/CoderPuppy/os-browserify.git" } }