aqua/integration-tests
Valery Antopol 9b4865f8a8 Merge branch 'chore/use-fcli-for-nox' into renovate/fluencelabs-js-client-0.x
# Conflicts:
#	.github/workflows/tests.yml
2024-03-04 19:54:37 +04:00
..
aqua/examples fix(compiler): Bug in renaming [LNG-346] (#1094) 2024-02-29 09:23:34 +00:00
lsp-aqua feat(language-server): Add types for types in LSP API (#1078) 2024-02-20 12:02:55 +01:00
src fix(compiler): Bug in renaming [LNG-346] (#1094) 2024-02-29 09:23:34 +00:00
.gitignore chore: move integration tests to repo [LNG-167] (#756) 2023-06-19 19:28:34 +03:00
.npmignore chore: move integration tests to repo [LNG-167] (#756) 2023-06-19 19:28:34 +03:00
.prettierrc.cjs feat(compiler): Add boolean algebra [fixes LNG-211] (#814) 2023-07-27 14:11:36 +03:00
jest.config.cjs chore: move integration tests to repo [LNG-167] (#756) 2023-06-19 19:28:34 +03:00
LICENSE chore: move integration tests to repo [LNG-167] (#756) 2023-06-19 19:28:34 +03:00
package.json Merge branch 'chore/use-fcli-for-nox' into renovate/fluencelabs-js-client-0.x 2024-03-04 19:54:37 +04:00
README.md chore: move integration tests to repo [LNG-167] (#756) 2023-06-19 19:28:34 +03:00
tsconfig.json chore: Compile integration tests with aqua-api [fixes LNG-240] (#884) 2023-09-12 13:11:50 +03:00

Aqua playground

Repository demonstrating the how to start writing aqua and integrate it into a typescript application

Getting started

Install dependencies

npm install

To compile the aqua files execute

npm run compile-aqua

To start the index.ts execute

npm run run

To run all examples in example directory

npm run exec

If everything works correctly logs without errors will be printed on a screen:

Then you can add or modify aqua files in aqua directory, these files will be compiled into /src/compiled and you can use it in a TypeScript in your preferable way.

Project structure

Aqua source files are located in src/aquadirectory.

Aqua files are compiled into .ts located in /src/compiled directory.

Entry point to use aqua compiled files from TypeScript: /src/index.ts

Code that call all examples and check results: /src/run-examples.ts

References

Documentation for the compiler can be found in the official repo: https://github.com/fluencelabs/aqua