├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── LICENSE.md ├── README.md ├── binding.gyp ├── package.json ├── spec └── runas-spec.coffee └── src ├── fork.cc ├── fork.h ├── main.cc ├── runas.coffee ├── runas.h ├── runas_darwin.cc ├── runas_posix.cc └── runas_win.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/binding.gyp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/package.json -------------------------------------------------------------------------------- /spec/runas-spec.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fork.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/fork.cc -------------------------------------------------------------------------------- /src/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/fork.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/runas.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/runas.coffee -------------------------------------------------------------------------------- /src/runas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/runas.h -------------------------------------------------------------------------------- /src/runas_darwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/runas_darwin.cc -------------------------------------------------------------------------------- /src/runas_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/runas_posix.cc -------------------------------------------------------------------------------- /src/runas_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom-archive/node-runas/HEAD/src/runas_win.cc --------------------------------------------------------------------------------