├── .clang-format ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── CodeQL.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines ├── build.yml ├── ci.yml └── publish.yml ├── binding.gyp ├── index.d.ts ├── index.js ├── package.json ├── src ├── logger.cc ├── logger.h └── main.cc └── test └── api.test.js /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | Standard: Cpp11 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/CodeQL.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/azure-pipelines/build.yml -------------------------------------------------------------------------------- /azure-pipelines/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/azure-pipelines/ci.yml -------------------------------------------------------------------------------- /azure-pipelines/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/azure-pipelines/publish.yml -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/package.json -------------------------------------------------------------------------------- /src/logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/src/logger.cc -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/src/main.cc -------------------------------------------------------------------------------- /test/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/node-spdlog/HEAD/test/api.test.js --------------------------------------------------------------------------------