https://github.com/storm-software/flash-flood
š§ An experimental application for managing bulk blockchain operations
https://github.com/storm-software/flash-flood
ethereum nextjs solana solidity
Last synced: 2 months ago
JSON representation
š§ An experimental application for managing bulk blockchain operations
- Host: GitHub
- URL: https://github.com/storm-software/flash-flood
- Owner: storm-software
- License: apache-2.0
- Created: 2025-03-26T00:35:18.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-04T00:22:42.000Z (about 1 year ago)
- Last Synced: 2025-04-04T01:24:16.119Z (about 1 year ago)
- Topics: ethereum, nextjs, solana, solidity
- Language: TypeScript
- Homepage: https://pump-dot-dump-website.vercel.app
- Size: 1.62 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
Storm Software's **flash-flood** monorepo containing TypeScript utility packages
with shared functionality common to many Storm Software applications
**flash-flood** is built using Nx,
a set of extensible dev tools for monorepos, which helps you develop like
Google, Facebook, and Microsoft. Building on top of Nx, the Open System provides
a set of tools and patterns that help you scale your monorepo to many teams
while keeping the codebase maintainable.
š» Visit stormsoftware.com to stay up to date with this developer
[](https://github.com/storm-software/flash-flood)Ā [](http://nx.dev/)Ā [](https://nextjs.org/)Ā [](http://commitizen.github.io/cz-cli/)Ā Ā Ā 
> [!IMPORTANT]
> This repository, and the apps, libraries, and tools contained within, is still in it's initial development phase. As a result, bugs and issues are expected with it's usage. When the main development phase completes, a proper release will be performed, the packages will be availible through NPM (and other distributions), and this message will be removed. However, in the meantime, please feel free to report any issues you may come across.
Be sure to ā this repository on GitHub so you can keep up to date on any daily progress!
## Table of Contents
- [Quick Features](#quick-features)
- [Visual Studio Code Extension](#visual-studio-code-extension)
- [Environment Configuration Help](#environment-configuration-help)
- [Getting Started](#getting-started)
- [Build](#build)
- [Development Server](#development-server)
- [Environment Configuration Help](#environment-configuration-help-1)
- [Plug-Ins](#plug-ins)
- [Generate an Application](#generate-an-application)
- [Generate a Library](#generate-a-library)
- [Code Scaffolding](#code-scaffolding)
- [Testing](#testing)
- [Running Unit Tests](#running-unit-tests)
- [Running End-to-End Tests](#running-end-to-end-tests)
- [Understand your workspace](#understand-your-workspace)
- [ā Nx Cloud](#-nx-cloud)
- [Distributed Computation Caching \& Distributed Task Execution](#distributed-computation-caching--distributed-task-execution)
- [Roadmap](#roadmap)
- [Contributing](#contributing)
- [Support](#support)
- [License](#license)
- [Contributors āØ](#contributors-)
# Quick Features
This section contains a quick overview of the features and functionality of the
repository.
## Visual Studio Code Extension
Acidic has it's own Visual Studio Code extension to support the language model
in the IDE. The extension can be found in the
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=storm-software.acidic).
## Environment Configuration Help
If you run into any issues while trying to run any of the above steps, please
reach out to Patrick Sullivan. See the [Support](#support) section for more
information.
# Getting Started
Once the code is pulled locally, open a command prompt and run `pnpm install` in
the root repo directory (/flash-flood).
More information can be found in the
[flash-flood documentation](https://storm-software.github.io/flash-flood/docs/getting-started/installation).
[ Back to top ā² ]
## Build
Run `pnpm build` to build the project. The build artifacts will be stored in the
`dist/` directory. Use the `--prod` flag for a production build.
[ Back to top ā² ]
## Development Server
Run `pnpm serve` for a dev server. Navigate to . The app
will automatically reload if you change any of the source files.
[ Back to top ā² ]
# Environment Configuration Help
If you run into any issues while trying to run any of the above steps, please
reach out to Patrick Sullivan. See the [Support](#support) section for more
information.
[ Back to top ā² ]
## Plug-Ins
Some of the plug-ins used by this repository are:
- [@nx/next](https://nx.dev/packages/next)
- [@nx/react](https://nx.dev/packages/react)
- [@nx/lint](https://nx.dev/linter/overview)
- [@nx/js](https://nx.dev/js/overview)
- [@nx/node](https://nodejs.org)
- [@nx/web](https://nx.dev/web/overview)
- [@nx/storybook](https://nx.dev/storybook/overview-react)
- [@nx/cypress](https://nx.dev/packages/cypress)
- [@nx/jest](https://nx.dev/packages/jest)
- And more...
[ Back to top ā² ]
## Generate an Application
Run `nx g @storm-software/workspace:app my-app` to generate an application.
> You can use any of the plugins above to generate applications as well.
When using Nx, you can create multiple applications and libraries in the same
workspace.
[ Back to top ā² ]
## Generate a Library
Run `nx g @storm-software/workspace:lib my-lib` to generate a library.
> You can also use any of the plugins above to generate libraries as well.
Libraries are shareable across libraries and applications. They can be imported
from `@flash-flood/my-lib`.
[ Back to top ā² ]
## Code Scaffolding
Run `nx g @nx/react:component my-component --project=flash-flood` to generate a
new component.
[ Back to top ā² ]
# Testing
Open System uses [Jest](https://jestjs.io/) for unit testing and
[Cypress](https://www.cypress.io/) for end-to-end testing.
[ Back to top ā² ]
## Running Unit Tests
Run `pnpm test` to execute the unit tests via [Jest](https://jestjs.io).
Run `pnpm affected:test` to execute the unit tests affected by a change.
[ Back to top ā² ]
## Running End-to-End Tests
Run `pnpm e2e` to execute the end-to-end tests via
[Cypress](https://www.cypress.io).
Run `pnpm affected:e2e` to execute the end-to-end tests affected by a change.
[ Back to top ā² ]
## Understand your workspace
Run `pnpm graph` to see a diagram of the dependencies of the Open System
projects.
[ Back to top ā² ]
# ā Nx Cloud
Nx caches the output of any previously run command such as testing and building,
so it can replay the cached results instead of rerunning it. Nx Cloud allows you
to share the computation cache across everyone in your team and CI.
[ Back to top ā² ]
## Distributed Computation Caching & Distributed Task Execution
Nx Cloud pairs with Nx in order to enable you to build and test code more
rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx
Cloud and start saving time instantly.
Teams using Nx gain the advantage of building full-stack applications with their
preferred framework alongside Nxās advanced code generation and project
dependency graph, plus a unified experience for both frontend and backend
developers.
Visit [Nx Cloud](https://nx.app/) to learn more.
[ Back to top ā² ]
# Roadmap
See the [open issues](https://github.com/storm-software/flash-flood/issues) for
a list of proposed features (and known issues).
- [Top Feature Requests](https://github.com/storm-software/flash-flood/issues?q=label%3Aenhancement+is%3Aopen+sort%3Areactions-%2B1-desc)
(Add your votes using the š reaction)
- [Top Bugs](https://github.com/storm-software/flash-flood/issues?q=is%3Aissue+is%3Aopen+label%3Abug+sort%3Areactions-%2B1-desc)
(Add your votes using the š reaction)
- [Newest Bugs](https://github.com/storm-software/flash-flood/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
[ Back to top ā² ]
# Contributing
First off, thanks for taking the time to contribute! Contributions are what
makes the open-source community such an amazing place to learn, inspire, and
create. Any contributions you make will benefit everybody else and are **greatly
appreciated**.
Please try to create bug reports that are:
- _Reproducible._ Include steps to reproduce the problem.
- _Specific._ Include as much detail as possible: which version, what
environment, etc.
- _Unique._ Do not duplicate existing opened issues.
- _Scoped to a Single Bug._ One bug per report.
Please adhere to this project's [code of conduct](.github/CODE_OF_CONDUCT.md).
You can use
[markdownlint-cli](https://github.com/storm-software/flash-flood/markdownlint-cli)
to check for common markdown style inconsistency.
[ Back to top ā² ]
# Support
Reach out to the maintainer at one of the following places:
- [Contact](https://stormsoftware.com/contact)
- [GitHub discussions](https://github.com/storm-software/flash-flood/discussions)
-
[ Back to top ā² ]
# License
This project is licensed under the **Apache License 2.0**. Feel free to edit and
distribute this template as you like. If you have any specific questions, please
reach out to the Storm Software development team.
See [LICENSE](LICENSE) for more information.
[](https://app.fossa.io/projects/git%2Bgithub.com%2Fstorm-software%2Fflash-flood?ref=badge_large&issueType=license)
[ Back to top ā² ]
# Contributors āØ
Thanks goes to these wonderful people
([emoji key](https://allcontributors.org/docs/en/emoji-key)):

Patrick Sullivan
šØ š» š§ š ā ļø

Tyler Benning
šØ

Stormie
š§
Add your contributions
This project follows the
[all-contributors](https://github.com/all-contributors/all-contributors)
specification. Contributions of any kind welcome!
[ Back to top ā² ]
Fingerprint: F47F 1853 BCAD DE9B 42C8 6316 9FDE EC95 47FE D106
Storm Software is an open source software development organization and creator
of Acidic, StormStack and StormCloud.
Our mission is to make software development more accessible. Our ideal future is
one where anyone can create software without years of prior development
experience serving as a barrier to entry. We hope to achieve this via LLMs,
Generative AI, and intuitive, high-level data modeling/programming languages.
Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team,
receive release notifications, ask questions, and get involved.
If this sounds interesting, and you would like to help us in creating the next
generation of development tools, please reach out on our
[website](https://stormsoftware.com/contact) or join our
[Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA)
channel!
[ Back to top ā² ]