UNPKG

@keybittech/awayto

Version:

Deploy a fully-featured application in about 10 minutes that is primed for quick development. Do business, impress a client with a quick demo, finish your poc with time to spare; all easily achievable with Awayto.

229 lines (132 loc) 12.1 kB
# ![Awayto logo](https://raw.githubusercontent.com/keybittech/awayto/main/app/src/webapp/img/kbt-icon_32w.png) Awayto [Awayto.dev](https://awayto.dev/) - [Typedoc](https://awayto.dev/docs/index.html) - [KeyBit Tech](https://keybittech.com/) - [Discord](https://discord.gg/KzpcTrn5DQ) - [Twitch](https://twitch.tv/awayto) - [Twitter](https://twitter.com/awaytodev) - [Contact](mailto:joe@keybittech.com) - [LinkedIn](https://www.linkedin.com/in/joe-mccormick-76224429/) Awayto is a curated development platform designed to produce high-value web and mobile applications with minimal investment. Application architecture can be complex — sometimes problematic — and there are a great deal of methods and solutions to choose from. Awayto simplifies higher-order technological concerns such as hosting, deployment, and building, in order to greatly reduce time-to-market, and the general barrier of entry to building web and mobile applications. Using these technologies, Awayto gives a structured framework for rapid development: [`typescript`](https://www.typescriptlang.org/), [`react`](https://reactjs.org/), [`react-app-rewired`](https://github.com/timarney/react-app-rewired), [`redux`](https://redux.js.org/), [`pg`](https://node-postgres.com/), [`AWS Cognito`](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-cognito-identity-provider/index.html), [`AWS S3`](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-s3/), AWS Lambda, AWS API Gateway, AWS EC2, AWS RDS `!` We're actively looking for contributors and AWS replacements for our cloudless implementation! If interested, [join the discord](https://discord.gg/KzpcTrn5DQ). Thanks! ## [Watch the 2-minute intro](https://www.youtube.com/watch?v=GKsvr3KkF4E) ## [Getting Started](https://awayto.dev/start) - [FAQ](https://awayto.dev/faq) ## Quick Installation Make sure your console session can perform AWS CLI commands with Administrator role access. ``` npm i -g @keybittech/awayto mkdir proj cd proj awayto ``` ## What is Awayto? Deploy a fully-featured application in about 10 minutes that is primed for quick development. Do business, impress a client with a quick demo, finish your poc with time to spare; all easily achievable with Awayto. Managing the infrastructure for web applications is often cumbersome and time consuming. Awayto can be thought of as a method for working with web applications, laying out each step, should you care to change something. There are a few tenets of Awayto: - Enhance the developer experience - Provide opportunities for developers to learn - Minimal focus on deployment, managed centrally - Use conventions that compliment functionality The Awayto platform adheres to these tenets in part by being scalable, lightweight, and informative in its formation. The goal is to be a central platform that uses a precise and opinionated toolset to unite web, mobile, and IoT technologies. Developers and businesses alike can enjoy the many tools offered by Awayto: - Rapidly deployable environment using enterprise level technologies - Full scale business application built with business owners in mind - Robust user management system allowing for self signup, federated IdP, SAML, or admin generated memberships - Baked in group and role authorization framework - Fully-typed development environment using Typescript; use the same types on the full stack - Database schema designed for auditing and reporting ## CLI Usage #### Prerequisites Any AWS tasks are performed on an AWS account with the Administrator role. - An AWS Account - AWS CLI 2.0.42 - Node 16.3.0 - Postgres 13.4 - Python 3.7.9 #### Manual Install Old installation guide moved to `INSTALL.md` as the installer is now automated. #### Update In the future, if you want get access to new or updated tooling offered by Awayto, you can update the `src/core` folder using `awayto` in an existing install directory. >`Caution!` This will overwrite any changes to existing files in the `src/core` folder. If you want to continue receiving Awayto updates, make your changes and developments outside of the `src/core` folder. But if you want to take control and change everything, that's ok too! Just be aware of what the `update` command will do. ## Usage ### Utility Commands - `npm run start` -- Start a local dev server at `localhost:3000` which only serves the webapp, and uses the `settings.development.env` file. - `npm run start-stack` -- Same as above, but if you opted for local-testing in the installation, this will start `sam local` using the `env.json` and `template.sam.yaml` files in the main directory. SAM Local starts up a docker contanerized instance of your Lambda function at `localhost:3001`. The webapp will pick up the `settings.local.env` file in this case. - `npm run start-api` -- Starts just the api with the same above configuration. - `npm run start-local` -- Starts just the webapp with the `settings.local.env` configuration. - `npm run watch-api` -- Start a webpack watcher on just the api. - `npm run build-api` -- Build the api with webpack using `api.webpack.js`. As a result of the build, a minified index.js containing the Lambda handler will be placed into the `apipkg` folder. - `npm run build-web` -- Build the webapp using react-app-rewired. As a result of this build, a `build` folder will be generated. - `npm run build-deploy` -- Build both the api and webapp, in the event you are preparing to deploy a full stack update. - `npm run install-stack` -- In the event you are installing a re-packaged version of Awayto, you can use this command to install the related AWS resources into your own AWS account. - `npm run db-update` -- Deploy any un-deployed `.sql` files in the `src/api/scripts` folder. You can see what's been deployed by reviewing the seed file `bin/data/seeds`. - `npm run release` -- Run a release script which will deploy both the api (`apipkg` folder) and webapp (`build` folder) to s3. Then the script will request a CloudFront distribution invalidation on the entire webapp bucket. As well, the Lambda function will be re-deployed with the built handler. ### Typescript Suite Type reference can be found [here](https://awayto.dev/docs/modules.html). ### Hooks There are a few hooks offered out of the box, core to the Awayto UI design experience. #### useRedux Hook into the fully typed redux store. Access your redux state using this hook. ```ts import { useRedux } from 'awayto'; const profile = useRedux(state => state.profile); // e.g. returns the currently logged in IUserProfile ``` #### useAct `useAct` is a wrapper for dispatching actions. Give it an [IActionTypes](https://awayto.dev/docs/modules.html#iactiontypes), a loader boolean, and the action payload if necessary. ```ts import { useAct, IUtilActions } from 'awayto'; const { SET_SNACK } = IUtilActions; const act = useAct(); act(SET_SNACK, { snackOn: 'Success!', snackType: 'success' }); // e.g. send a notification to the toast popup component ``` #### useApi The `useApi` hook provides type-bound api functionality. By passing in a [IActionTypes](https://awayto.dev/docs/modules.html#iactiontypes) (e.g. [IUtilActionTypes](https://awayto.dev/docs/enums/iutilactiontypes.html), [IManageUsersActionTypes](https://awayto.dev/docs/enums/imanageusersactiontypes.html), etc...) we can control the structure of the api request, and more easily handle it on the backend. ```ts import { useApi, IManageUsersActions, useRedux } from 'awayto'; const { GET_MANAGE_USERS, GET_MANAGE_USERS_BY_ID } = IManageUsersActions; const api = useApi(); const users = useRedux(state => state.users); api(GET_MANAGE_USERS); // Kickoff a GET/manage/users call, which will populate our redux state later ``` As long as we have setup our model, `GET_MANAGE_USERS` will inform the system of the API endpoint and shape of the request/response. If the endpoint takes path parameters (like `GET/manage/user/id/:id`), or if the request requires a body, we can pass these as the third parameter. Pass a boolean as the second argument to show or hide a loading screen. ```ts api(GET_MANAGE_USERS_BY_ID, false, { id }); // Get a user profile by a specified ID, refresh it in redux state, and do not show a loading screen ``` #### useCognitoUser Use this hook to get access to Cognito functionality once the user has logged in, or to check if the user is logged in. ```ts import { useCognitoUser } from 'awayto'; const cognitoUser = useCognitoUser(); await cognitoUser.getSession(); cognitoUser.isLoggedIn == true ``` #### useComponents `useComponents` takes advantage of [React.lazy](https://reactjs.org/docs/code-splitting.html#reactlazy) as well as the [Proxy API](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy). By combining these functionalities, we end up with a tool that makes it easy to work in an expanding and quickly changing code base. As new files are added to the project while the developer is working, they will be automatically discovered and made lazily available through `useComponents`. The only need is to refresh the browser page once the component has been added to the render cycle. If the developer tries to destructure a component that does not exist in the group of lazy loaded components, `useComponents` will return an empty `div`. This is configurable. ```ts import { useComponents } from 'awayto'; function ParentComponent(props: IProps): JSX.Element { const { SomeComponent } = useComponents(); return <SomeComponent {...props} />; } ``` #### useFileStore `useFileStore` is used to access various types of pre-determined file stores. All stores allow CRUD operations for user-bound files. Internally default instantiates {@link AWSS3FileStoreStrategy}, but you can also pass a {@link FileStoreStrategies} to `useFileStore` for other supported stores. ```ts import { useFileStore } from 'awayto'; const files = useFileStore(); const file: File = .... const fileName: string = '...'; // Make sure the filestore has connected if (files) await files.post(file, fileName) ``` ## Contributing We are happy to have people help with the project whether it be code, feedback, or other. Join our [Discord](https://discord.gg/KzpcTrn5DQ) to learn about the project, meet other members in the community, and get involved. For code related improvements: 1. Create a form. 2. Create your feature branch: `git checkout -b my-new-feature` 3. Commit your changes: `git commit -am 'Add some feature'` 4. Push to the branch: `git push origin my-new-feature` 5. Submit a pull request ## License The MIT License (MIT) Copyright (c) 2021 [KeyBit Tech LLC](https://keybittech.com) Contact Joe McCormick [joe@keybittech.com](mailto:joe@keybittech.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.