@singularsystems/neo-react

React application logic and components for the Neo client library

Usage no npm install needed!

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

README

neo-react

This project contains the react/mobx implementation of the neo client library.

It also contains UI components built for react.

Testing

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

{
    "version": "0.2.0",
    "configurations": [
      {
        "name": "Debug Tests",
        "type": "node",
        "request": "launch",
        "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/react-scripts",
        "args": [
          "test",
          "--runInBand",
          "--no-cache",
          "--watchAll=false"
        ],
        "cwd": "${workspaceRoot}",
        "protocol": "inspector",
        "console": "integratedTerminal",
        "internalConsoleOptions": "neverOpen"
      }
    ]
}