├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src ├── addressBook-Contact.h ├── addressBook-Record.h ├── addressBook.cc ├── addressBook.h ├── binding.cc ├── compatibility.h ├── graphicServices.cc ├── graphicServices.h ├── notifications.cc ├── notifications.h ├── telephony.cc └── telephony.h ├── tests ├── addressBook-test.js └── notification-test.js └── wscript /.gitignore: -------------------------------------------------------------------------------- 1 | .lock-wscript 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/package.json -------------------------------------------------------------------------------- /src/addressBook-Contact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/addressBook-Contact.h -------------------------------------------------------------------------------- /src/addressBook-Record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/addressBook-Record.h -------------------------------------------------------------------------------- /src/addressBook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/addressBook.cc -------------------------------------------------------------------------------- /src/addressBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/addressBook.h -------------------------------------------------------------------------------- /src/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/binding.cc -------------------------------------------------------------------------------- /src/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/compatibility.h -------------------------------------------------------------------------------- /src/graphicServices.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/graphicServices.cc -------------------------------------------------------------------------------- /src/graphicServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/graphicServices.h -------------------------------------------------------------------------------- /src/notifications.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/notifications.cc -------------------------------------------------------------------------------- /src/notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/notifications.h -------------------------------------------------------------------------------- /src/telephony.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/telephony.cc -------------------------------------------------------------------------------- /src/telephony.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/src/telephony.h -------------------------------------------------------------------------------- /tests/addressBook-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/tests/addressBook-test.js -------------------------------------------------------------------------------- /tests/notification-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/tests/notification-test.js -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TooTallNate/node-iOS/HEAD/wscript --------------------------------------------------------------------------------