Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jottenlips/favorite_resources
📚 Helpful Full Stack Development Resources
https://github.com/jottenlips/favorite_resources
aws databases flux fp functional-programming microservices nosql react react-native redux schema-first sdl serverless sql vpc
Last synced: 3 days ago
JSON representation
📚 Helpful Full Stack Development Resources
- Host: GitHub
- URL: https://github.com/jottenlips/favorite_resources
- Owner: jottenlips
- Created: 2019-12-22T15:34:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-22T16:57:20.000Z (about 5 years ago)
- Last Synced: 2024-11-28T12:11:47.564Z (2 months ago)
- Topics: aws, databases, flux, fp, functional-programming, microservices, nosql, react, react-native, redux, schema-first, sdl, serverless, sql, vpc
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This is a list of articles, documents, and videos that I have found to be very helpful for web development.
# Databases
## Aurora
[Serverless Aurora: What it means and why it's the future of data](https://serverless.com/blog/serverless-aurora-future-of-data/)
## AWS Neptune
[Recommendation Engine](https://github.com/aws-samples/amazon-neptune-samples/tree/master/gremlin/collaborative-filtering)
## DynamoDB / MongoDB
["One Table" Design Pattern](https://www.youtube.com/watch?v=HaEPXoXVf2k)
[DynamoDB Paper](https://www.allthingsdistributed.com/files/amazon-dynamo-sosp2007.pdf)
# GraphQL
## Apollo
[Offline React-Native](https://github.com/apollographql/apollo-cache-persist)
[Update Cache After mutation](https://www.apollographql.com/docs/react/data/mutations/#making-all-other-cache-updates)
> I am including this article because it is a usual pain point for people new to GraphQL.
## AppSync
[Chat App](https://serverless.com/blog/building-chat-appliation-aws-appsync-serverless/)
[Geo Search](https://serverless.com/blog/build-geosearch-graphql-api-aws-appsync-elasticsearch)
## Ariadne
[Integrate with Flask](https://ariadnegraphql.org/docs/flask-integration)
[YAML for Serverless Configuration](https://github.com/jottenlips/jazz-charts-api/blob/master/serverless.yml)
# Micro-Services and Infrastructure as Code
## Serverless
[Their Awesome Blog](https://serverless.com/blog)
[Choosing a Database for Serverless Applications](https://serverless.com/blog/choosing-a-database-with-serverless/)
[Keep Functions Warm](https://serverless.com/blog/keep-your-lambdas-warm)
### UsefulPlugins
serverless-prune-plugin
serverless-dotenv-plugin
serverless-offline
serverless-domain-manager
serverless-plugin-warmup
#### Python
serverless-wsgi
serverless-python-requirements
#### Node.js
serverless-webpack
serverless-plugin-monorepo
### VPC
[Configuring a Lambda function to run in a VPC](https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html)
[CloudFormation Script](https://gist.github.com/efi-mk/d6586669a472be8ea16b6cf8e9c6ba7f)
[Allowing Internet Access to Lambdas in a VPC](https://aws.amazon.com/premiumsupport/knowledge-center/internet-access-lambda-function/)
## Terraform
I am new to this and will post my favorite articles once I am more familiar.
# Methodology
[DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself)
[12 Factor App](https://12factor.net/)
[Practical Introduction to FP](https://maryrosecook.com/blog/post/a-practical-introduction-to-functional-programming)
[Flux](https://facebook.github.io/flux/)