├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .travis.yml ├── README.md ├── binding.gyp ├── cell.cc ├── cell.hpp ├── common.hpp ├── mmap-object.cc ├── package.json ├── test ├── test-mmap-object.js ├── util-closer.js └── util-interprocess.js └── testdata ├── badfile.bin └── badfile2.bin /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/binding.gyp -------------------------------------------------------------------------------- /cell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/cell.cc -------------------------------------------------------------------------------- /cell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/cell.hpp -------------------------------------------------------------------------------- /common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/common.hpp -------------------------------------------------------------------------------- /mmap-object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/mmap-object.cc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/package.json -------------------------------------------------------------------------------- /test/test-mmap-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/test/test-mmap-object.js -------------------------------------------------------------------------------- /test/util-closer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/test/util-closer.js -------------------------------------------------------------------------------- /test/util-interprocess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/test/util-interprocess.js -------------------------------------------------------------------------------- /testdata/badfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/testdata/badfile.bin -------------------------------------------------------------------------------- /testdata/badfile2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenluce/mmap-object/HEAD/testdata/badfile2.bin --------------------------------------------------------------------------------