1.0.9 • Published 6 years ago
@tessin/datoms v1.0.9
A Datomic like database built on top of Node.jsthat can run inside your browser!
Getting started
Requirements
nodejsversion 12 or lateryarn- SQL Azure (or SQL Server 2019 and later)
Storage is built-on top of SQL Azure using Latin1_General_100_CS_AS_SC_UTF8 collation. You need to use SQL Azure (or SQL Server 2019 and later). You can use express edition for testing/local development but not LocalDB.
SQL Azure connectivity is managed by the tedious driver. But, you cannot use integrated security because the tedious driver doesn't support it.
Scripts
yarn start- Run transactor in watch mode.
yarn test- Run test suite.
yarn test -w- Run test suite in watch mode.
yarn build- Run production TypeScript build.
When running in watch mode TypeScript code is loaded directly from source and transpile in memory as needed. See @tessin/tcm for more information.