├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── README.md ├── dist ├── modern_cpp_lib_js.js └── modern_cpp_lib_js.wasm ├── package.json ├── src ├── CMakeLists.txt ├── jslib.cpp └── pre.js └── test ├── browser └── index.html └── node ├── index.js ├── package-lock.json └── package.json /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "shs.mainFile": "test/browser/index.html" 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/README.md -------------------------------------------------------------------------------- /dist/modern_cpp_lib_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/dist/modern_cpp_lib_js.js -------------------------------------------------------------------------------- /dist/modern_cpp_lib_js.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/dist/modern_cpp_lib_js.wasm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/package.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/jslib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/src/jslib.cpp -------------------------------------------------------------------------------- /src/pre.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/test/browser/index.html -------------------------------------------------------------------------------- /test/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/test/node/index.js -------------------------------------------------------------------------------- /test/node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/test/node/package-lock.json -------------------------------------------------------------------------------- /test/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chafey/modern-cpp-lib-js/HEAD/test/node/package.json --------------------------------------------------------------------------------