nodekit icon indicating copy to clipboard operation
nodekit copied to clipboard

[Moved to Codeberg] A Small Web server.

Results 3 nodekit issues
Sort by recently updated
recently updated
newest added

From _lib/Util.js_: ```js static unprivilegedAccountName () { if (process.platform === 'win32' || process.env.USER !== 'root') { // Does not apply to Windows as there is no sudo. return os.userInfo().username }...

enhancement
Port (Site.js)

From _lib/Util.js_: ```js static refuseToRunAsRoot () { // Refuse to run if this is the root account. if (process.env.USER === 'root' && process.env.SUDO_USER === undefined) { // This is an...

enhancement
Port (Site.js)

From: _lib/Util.js_: ```js static unprivilegedHomeDirectory () { if (process.platform === 'win32') { return os.homedir() } else { // Linuxesque: return non-root home folder even if invoked via sudo. const accountsFolder...

enhancement
Port (Site.js)