Awayto is a curated development platform, producing great value with minimal investment. With all the ways there are to reach a solution, it's important to understand the landscape of tools to use.
Awayto.dev - Typedoc - KeyBit Tech - Discord - Twitch - Twitter - Contact - LinkedIn
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
, react
, react-app-rewired
, redux
, pg
, AWS Cognito
, AWS 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. Thanks!
Make sure your console session can perform AWS CLI commands with Administrator role access.
npm i -g @keybittech/awayto
mkdir proj
cd proj
awayto install <name> <environment> "<description>"
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
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
NPM 7.15.1
Postgres 13.4
Python 3.7.9
Old installation guide moved to INSTALL.md
as the installer is now automated.
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 thesrc/core
folder. If you want to continue receiving Awayto updates, make your changes and developments outside of thesrc/core
folder. But if you want to take control and change everything, that’s ok too! Just be aware of what theupdate
command will do.
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. We use AWS SAM to run the local API, this requires Docker. AWS SAM, while extremely convenient, has gone through some growing pains; so if you ever run into issues, ask on the Discord. We use the --warm-containers LAZY
option, so when your api starts make sure to make a couple requests to get the Lambda initialized.
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-create-migration <name>
– Autogenerate a migration in the src/api/scripts/db
folder.
npm run db-update
– Deploy any un-deployed .sql
files in the src/api/scripts/db
folder. You can see what’s been deployed by reviewing the seed file bin/data/seeds
.
npm run db-update-file <name>
– If a script fails while updating, you can fix it then specifically-redeploy it with this command.
npm run invoke-event <name>
– Use an event from src/api/scripts/events
and run it against the live deployed lambda for your Awayto install.
npm run invoke-event-local <name>
– Run Lambda events locally using AWS SAM.
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.
Type reference can be found here.
There are a few hooks offered out of the box, core to the Awayto UI design experience.
Hook into the fully typed redux store. Access your redux state using this hook.
import { useRedux } from 'awayto';
const profile = useRedux(state => state.profile); // e.g. returns the currently logged in IUserProfile
useAct
is a wrapper for dispatching actions. Give it an IActionTypes, a loader boolean, and the action payload if necessary.
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
The useApi
hook provides type-bound api functionality. By passing in a IActionTypes (e.g. IUtilActionTypes, IManageUsersActionTypes, etc…) we can control the structure of the api request, and more easily handle it on the backend.
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.
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
Use this hook to get access to Cognito functionality once the user has logged in, or to check if the user is logged in.
import { useCognitoUser } from 'awayto';
const cognitoUser = useCognitoUser();
await cognitoUser.getSession();
cognitoUser.isLoggedIn == true
useComponents
takes advantage of React.lazy as well as the Proxy API. 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.
import { useComponents } from 'awayto';
function ParentComponent(props: IProps): JSX.Element {
const { SomeComponent } = useComponents();
return <SomeComponent {...props} />;
}
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.
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)
We are happy to have people help with the project whether it be code, feedback, or other. Join our Discord to learn about the project, meet other members in the community, and get involved.
For code related improvements:
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
The MIT License (MIT)
Copyright © 2021 KeyBit Tech LLC
Contact Joe McCormick [email protected]
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.