Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goldstack/cognito-nodejs-template
User Management with Cognito with Node.js / React
https://github.com/goldstack/cognito-nodejs-template
authentication cognito nodejs react serverless
Last synced: 16 days ago
JSON representation
User Management with Cognito with Node.js / React
- Host: GitHub
- URL: https://github.com/goldstack/cognito-nodejs-template
- Owner: goldstack
- Created: 2022-12-24T23:19:58.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-14T09:09:36.000Z (about 2 months ago)
- Last Synced: 2024-09-14T19:58:32.812Z (about 2 months ago)
- Topics: authentication, cognito, nodejs, react, serverless
- Language: HTML
- Homepage: https://goldstack.party/templates/user-management
- Size: 196 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Generated with Goldstack
Add the capability to your application to sign up and sign in users. Provides server-side utilities for authentication and ready-to-go hosted user interface for sign up and sign in. Implemented using [Amazon Cognito](https://docs.aws.amazon.com/cognito/latest/developerguide/what-is-amazon-cognito.html).
This boilerplate has been automatically generated using the template:
Feel free to fork this repository and modify it for your needs, or use the [Goldstack project builder](https://goldstack.party/build) to generate a boilerplate specifically configured for your project.
# Getting Started
Thank you for using this boilerplate. For any questions or feedback, please be welcome to [raise an issue on GitHub](https://github.com/goldstack/goldstack/issues) 🤗 .
## 1. Fork and clone the repository
[Fork this repository](https://docs.github.com/en/get-started/quickstart/fork-a-repo) and then [clone](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository) the fork your local machine.
## 2. Install required local dependencies
A few dependencies need to be available in your development system. Please verify they are present or install them.
- Node v18+
- Yarn v1.22.5+
- Docker v24+Open a terminal and run the following commands:
```bash
node -v
yarn -v
docker --version
```This should produce the following output:
![Confirming versions in the console](https://cdn.goldstack.party/img/202203/confirm_versions.png)
If you need to install or update any of the dependencies, please see the following guides:
- [Downloading and installing Node.js and npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
- [Yarn Installation](https://yarnpkg.com/getting-started/install)
- [Install Docker for Windows](https://docs.docker.com/docker-for-windows/install/) / [Install Docker for Mac](https://docs.docker.com/docker-for-mac/install/)## 3. Initialise project and install NPM Dependencies
Run `yarn` in your project directory to install and download all dependencies.
The installation process should take around 3-10 minutes depending on the dependencies that need to be downloaded.
![Installing project dependencies](https://cdn.goldstack.party/img/202203/install_project.gif)
You can confirm everything was installed correctly by running `yarn -v`. This should show a yarn version of `3.0.0+`.
![Confirming Yarn Version after install](https://cdn.goldstack.party/img/202203/confirm_yarn_version_after_install.png)
## 4. Build modules
Make sure that the project compiles correctly by running `yarn build` your project directory:
![Building your project](https://cdn.goldstack.party/img/202203/build_project.gif)
Note that this command also ensures that all TypeScript project references are configured correctly.
## 5. Configure VSCode
In order to setup VSCode, open the project in VSCode.
VSCode may prompt you to ask if you trust the authors of the workspace. Respond with Yes.
You may also be asked if you want to install recommended extensions for this workspace. We recommend to do so since the template will be optimised to work with the suggested extensions.
![VSCode Prompt install extensions](https://cdn.goldstack.party/img/202201/install_extensions.png)
If you want to install the necessary extensions manually, here are links to the extensions required:
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)
- [ZipFS](https://marketplace.visualstudio.com/items?itemName=arcanis.vscode-zipfs) (optional)## 6. Initialise TypeScript
Locate a `.ts` or `.tsx` file in the workspace and open it. When asked whether to use the workspace TypeScript version, click _Allow_.
In the status bar on the bottom right-hand corner of the VSCode editor you should now see _TypeScript_.
![TypeScript status icon in VSCode](https://cdn.goldstack.party/img/202203/typescript_init.png)
## 7. Local Development
The code provided in this project works best in combination with client- and server-side application code defined in other packages.
For this, simply import the package provided in `packages/user-management-1` in your client- and/or server-side logic.
For more information, see the Goldstack documentation:
- [User Management / Development (Client)](https://docs.goldstack.party/docs/templates/user-management#3-development-client-1)
- [User Management / Development (Server)](https://docs.goldstack.party/docs/templates/user-management#4-development-server-1)## 8. Deploy to AWS
If you want to deploy your project to AWS, you will need to make some changes to the configuration files included in this project.
Specifically, the [goldstack.json](https://github.com/goldstack/cognito-nodejs-template/blob/master/packages/user-management-1/goldstack.json) in the `packages/user-management-1` folder.
```json
{
"$schema": "./schemas/package.schema.json",
"name": "user-management",
"template": "user-management",
"templateVersion": "0.1.0",
"configuration": {},
"deployments": [
{
"name": "prod",
"awsRegion": "us-west-2",
"awsUser": "goldstack-dev",
"configuration": {
"cognitoDomain": "",
"userPoolName": "",
"hostedZoneDomain": "",
"callbackUrl": ""
},
"tfStateKey": "user-management-prod-xxxxxxx.tfstate"
}
]
}
```The key properties you will need to update are:
- `deployments[0].configuration.cognitoDomain`
- `deployments[0].configuration.userPoolName`
- `deployments[0].configuration.hostedZoneDomain`
- `deployments[0].configuration.callbackUrl`Also you need to _delete_ `deployments[0].tfStateKey`.
For more information on these configuration options, see [Goldstack Documentation / User Management / Configure](https://docs.goldstack.party/docs/templates/user-management#configure).
You will also need to ensure that you have a valid AWS user configure to deploy to AWS. For this, create a file in `/config/infra/config.json` (relative to project root).
{
"users": [
{
"name": "goldstack-dev",
"type": "apiKey",
"config": {
"awsAccessKeyId": "...",
"awsSecretAccessKey": "...",
"awsDefaultRegion": "us-west-2"
}
},
{
"name": "goldstack-prod",
"type": "apiKey",
"config": {
"awsAccessKeyId": "...",
"awsSecretAccessKey": "",
"awsDefaultRegion": "us-west-2"
}
}
]
}For more information on configuring your local AWS users, please see [Goldstack Documentation / AWS Configuration](https://docs.goldstack.party/docs/goldstack/configuration#aws-configuration).
Once your AWS user is configured you can run `yarn infra up prod` in the `/packages/user-management-1` folder. For more information on the infrastructure commands for this project, see [Goldstack Documentation / User Management / Infrastructure](https://docs.goldstack.party/docs/templates/user-management#infrastructure).
## 9. Contribute to Goldstack
Have questions or ideas or want to contribute to the project? Please head over to [github.com/goldstack/goldstack](https://github.com/goldstack/goldstack).