@singularsystems/neo-core

Core functionality for the Neo client library

Usage no npm install needed!

<script type="module">
  import singularsystemsNeoCore from 'https://cdn.skypack.dev/@singularsystems/neo-core';
</script>

README

neo-core

This project contains the core functionality of the neo client library. The code in this library is referenced by the neo-vue and neo-react projects.

Testing

To debug the tests, you need to add the following to .vscode\launch.json

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Jest Current File",
            "program": "${workspaceFolder}/node_modules/.bin/jest",
            "args": [
              "${fileBasenameNoExtension}",
              "--config",
              "jest.config.js"
            ],
            "console": "integratedTerminal",
            "internalConsoleOptions": "neverOpen",
            "disableOptimisticBPs": true,
            "windows": {
              "program": "${workspaceFolder}/node_modules/jest/bin/jest",
            }
          }
    ]
}