├── .gitignore ├── .npmignore ├── History.md ├── Makefile ├── Readme.md ├── lib ├── cycle.js └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/Readme.md -------------------------------------------------------------------------------- /lib/cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/lib/cycle.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewmueller/preact-socrates/HEAD/package.json --------------------------------------------------------------------------------