Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s-leroux/wallet-valuator
A library to explore your transactions on the Gnosis Blochain (possible other EVM-compatible chains)
https://github.com/s-leroux/wallet-valuator
Last synced: 15 days ago
JSON representation
A library to explore your transactions on the Gnosis Blochain (possible other EVM-compatible chains)
- Host: GitHub
- URL: https://github.com/s-leroux/wallet-valuator
- Owner: s-leroux
- License: mit
- Created: 2024-12-13T00:00:00.000Z (26 days ago)
- Default Branch: main
- Last Pushed: 2024-12-16T12:12:42.000Z (23 days ago)
- Last Synced: 2024-12-16T12:30:15.293Z (23 days ago)
- Language: TypeScript
- Size: 185 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stage 0
Install docker and npm (any version) on the host computer.
After that we will work in a specific container.# Stage 1: Create and start the container:
```
sh$ npm run build-container
sh$ npm run shellnode@52939f3b198e:~$ pwd
/home
node@52939f3b198e:~$ ls -l
total 12
-rw-rw-r-- 1 node node 841 Oct 1 07:58 DOCKERFILE
-rw-rw-r-- 1 node node 1071 Oct 1 07:56 LICENSE
-rw-rw-r-- 1 node node 1136 Oct 1 08:15 package.json
node@52939f3b198e:~$ whoami
node
node@52939f3b198e:~$ exit
exitsh$
```# Start 2: Run the node application
```
sh$ npm start
# or
sh$ npm run shell
node@2b9634cf5c20:~$ exec yarn start-in-container
```# Stage 3: Run Mocha
```
sh$ npm test
# or
sh$ npm run shell
node@2b9634cf5c20:~$ exec yarn test-in-container
```# Stage 4: Run ESLint
```
sh$ npm run lint
# or
sh$ npm run shell
node@2b9634cf5c20:~$ exec yarn lint-in-container
```