This was created during my time as a student at Code Chrysalis.
This was the Solo MVP Project, where a deployed MVP web application was to be built in 2 days
Therefore, please excuse the messy code, but I hope to continue working on this as part of my wider belief in allowing non-developers to contribute to development.
All TO-DOS will be tracked in Github Issues and Projects, so please drop an issue or email me (on my profile) if you are interested in using this project
alwyn is a React based Flowchart Development Environment.
alwyn allows a user to create Blocks and define the Links between them using an intuitive drag-and-drop interface.
The code is then transplied to Javascript and can be exported into a Node environment.
This app is meant to act as a framework for develoment teams who want to allow non-coders to create MVP features which conform to good practice, have tests and can be easily reworked by a developer once the MVP has been proven. It should be hosted in an 'employees-only' space and
If this app was ever to be at 1.0.0, I would want to have:
- Single File Creation of New Blocks to allow swift adoption to a company's buisness logic.
- Using Test Blocks is Enforced for all Processes. (TDD!)
- Intuitive 'no-teaching-required' default UI design
- Single File Configuration of Look and Feel (per component)
- Single File Configuration of Functionality
- Full Language Agnosticism
- Good Performance
alwyn was built in React using Next.js and the material-ui.
I decided not to implement the project with Redux as I was only dealing with a few levels of components.
The flowchart was developed from the react-flow-library. Unlike many other flowcharting libraries, it can expose its state to the container, which forms the basis of transpiling the chart to a program string.
Please initialise this repository with:
yarnBuild and Run the App with:
yarn build
yarn start <Your Desired Port Number>Yarn start initially checks the environment variable $PORT
Run with Hot Reloading with:
yarn dev