0.0.1 • Published 4 years ago

etherless-cli v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

etherless-cli

References

https://www.math.unipd.it/~tullio/IS-1/2019/Progetto/C2.pdf

Software Engineering project at University of Padua, developed for Red Babel, by b.smart.

Installation

  • Clone the project;
  • Run the container ( trough VSCode remote-containers is suggested);
  • Install node_modules with the following command:
npm install -g

Build

etherless-cli is written in TypeScript and the js code needs to be generated: The following command run the build of .js files, providing static code analysis with ESLint

npm run build

Run

Thanks to npm install -g, we can launch our application by:

etherless

Static analysis

ESLint is configured to provide static code analysis

The following command provides the static check declared in .eslintrc

npm run lint

The following command provides the static check declared in .eslintrc, automatically correct basic mistakes

npm run lint-and-fix