doczjs/docz 19058
✍ It has never been so easy to document your things!
react-static/react-static 8891
⚛️ 🚀 A progressive static site generator for React.
formium/tsdx 5819
Zero-config CLI for TypeScript package development
jamstack-cms/jamstack-ecommerce 814
A starter project for building performant ECommerce applications with Gatsby and React
assuncaocharles/create-react-app-parcel 419
Create react apps with parcel instead of webpack cos why not
Svelte community meetups, packages, resources, recipes, showcase websites, and more
svelte-society/recipes-mvp 243
WIP repo to just start collecting recipes - eventually we will move this into the Svelte Community/Society site when it is fleshed out/complete
aws-amplify/docs 177
Amplify Framework Documentation
assuncaocharles/create-react-app-parcel-typescript 60
create-react-app-parcel-typescript
issue commentaws-amplify/docs
[Feedback] Does Amplify DataStore work with Vue?
it's framework agnostic, so it does.
if we can make that more clear in the docs, we should try to do so. i understand examples are react centric.
comment created time in 7 hours
push eventsw-yx/spark-joy
commit sha d57209d33752c3a3ce2b1d37859a865ec730082d
Update README.md
push time in 18 hours
push eventsw-yx/rollup-react-boilerplate
commit sha 74da270a1052b4f21592c924fd703186e9e7667c
fixed
push time in a day
push eventsw-yx/rollup-react-boilerplate
commit sha 69bada7db965cb9d88497a8128e89d66b066720a
s
push time in a day
push eventsw-yx/rollup-react-boilerplate
commit sha 9634c645f41199ffd16664b6989278ba845b9ca4
boilerplate used
push time in a day
push eventsw-yx/rollup-plugin-react-sfc
commit sha e04cffb033dbb72fb3497c07af69b3294d0258c2
refactor to use react-sfc
commit sha ed04b35290399ef59f068968fd51c7bee7ce03ff
update rsfc version
commit sha 63cb14d72461708d989fd8a4737bf9c1c6cdaae2
0.0.11
push time in a day
push eventreact-sfc/react-sfc-swyx
commit sha 90297a33c2f003d3ce89818ea4315b9b23607304
add tests
commit sha c8692a8b843f374c336c5883436f8cdfacff0a5a
Merge branch 'master' of https://github.com/react-sfc/react-sfc-swyx
commit sha e2d1e3bcd45025c39c213527286ba0ad0a515da5
fix cssdeclaration export bug
commit sha 5bcdd7834b5128d83318830a64242aac11278935
move binding syntax back to $
push time in a day
push eventsw-yx/sw-yx
commit sha ad47a559912850c25e21b5a43dfa87f14be0ea6a
dont keep pinging gh stats API
push time in a day
issue commentaws-amplify/amplify-js
[Request] DataStore models should have a sync status field
this exists in Hub but is not yet documented https://github.com/aws-amplify/amplify-js/issues/4808#issuecomment-640574885
comment created time in a day
issue commentaws-amplify/docs
Provide documentation on how to use Amplify with existing resources
i would like this too.
comment created time in a day
push eventsw-yx/spark-joy
commit sha bf1133f8e1d4aa495cf9a6161aae9a1a93ece3e1
Adding Water.css to CSS Framworks
commit sha a65f26e15574ff1869c7768e586b06edc291cb93
Merge pull request #36 from timrossback/add-watercss Adding Water.css to CSS Frameworks
push time in 2 days
PR merged sw-yx/spark-joy
Hi,
I've been seeing Water.css start to pop up in a few places and have actually found it really smooth and easy to use (I converted one of my projects to it and it's been a breeze - timrossback/kira@59b716a826bf29a56acf3bde01f915917474ab91). It's super simple to set up since it uses native HTML elements for styling rather than classes and is responsive with both a light and dark theme off the shelf. I think it would be a nice addition to the others already here.
Thanks!
pr closed time in 2 days
pull request commentsw-yx/spark-joy
Adding Water.css to CSS Frameworks
lgtm!
comment created time in 2 days
issue closedaws-amplify/docs
[Request] Separate search by language/platform to prevent accidental jumps
Is your feature request related to a problem? Please describe.

Describe the solution you'd like
some ideas:
- offer a way to do "faceted search" eg. specify that you are only searching within js or android or cli or whatever
- if there are undocumented flags with algolia that let the user filter within their own query, teach the user with a friendly popup
- offer an "advanced search" UI
closed time in 2 days
sw-yxissue commentaws-amplify/docs
[Request] Separate search by language/platform to prevent accidental jumps
not entirely addressed but at least now the search shows all results.
comment created time in 2 days
push eventsw-yx/spark-joy
commit sha 469ec9915aab53adde61a841b2d109bb08c2de0d
Update README.md
push time in 2 days
push eventsw-yx/react-demos
commit sha 744e1de9d9e56aff21cbc2d86306539dabc06169
simplify
commit sha 473e35fcd0922572d6bccc4d8ae5baa272701312
0.0.12
push time in 2 days
issue openedaws-amplify/amplify-js
[Request] DataStore models should have a status field?
Is your feature request related to a problem? Please describe.
it's a very common need to want to indicate the sync status of datastore items. i understand its a distsys issue. but we need to offer some sort of documentation or blessed path for people to show whether something has been "synced to cloud" or is really "local only and can be lost" eg during a model migration.
we seem to have this process here that quite honestly i dont understand (what am i executing "against the remote state"?): https://docs.amplify.aws/lib/datastore/sync/q/platform/js#update-and-delete-with-predicate
Describe the solution you'd like
check a field. MYMODELINSTANCE.isSynced === true or false
Describe alternatives you've considered
firebase uses a CompletionListener callback https://stackoverflow.com/a/48565275/1106414
Additional context
Jameson says:
The trouble is - which version has been synced to the cloud? It is, at its core, the classic cache coherency problem. Even to answer “is it still on the server (not deleted),” you’d have to go ask the server, to be sure. But, for the purposes of the UI: when you save to DataStore, mark an ID in a Set. Then, listen to Hub, for an event that lets you know it has been published. When it is, remove from set, and update UI from Set. This will be right most of the time, assuming a 1 client 1 server relationship for a given ID.
Amplify.Hub.subscribe(
HubChannel.DATASTORE,
event -> {
return DataStoreChannelEventName.PUBLISHED_TO_CLOUD.toString().equals(event.getName());
},
event -> {
ModelWithMetadata<?> mwm = (ModelWithMetadata<?>) event.getData();
set.put(mwm.getModelId());
invalidateModel(set);
}
);
created time in 2 days
push eventsw-yx/react-demos
commit sha 3eec4847012ab783962a3d15a89ccb2b322fc46b
readme
push time in 2 days
push eventsw-yx/react-demos
commit sha a36a2101a337a820929612e2a29667e55e16fe48
readme
push time in 2 days
push eventsw-yx/spark-joy
commit sha 8a25daa396a88902c241b7d38d696c463bdcd8cd
Update README.md
push time in 2 days
push eventsw-yx/spark-joy
commit sha fc4da4cd440c2cf94b0464f77712f9c1b850b867
Update README.md
push time in 2 days
push eventsw-yx/spark-joy
commit sha bea96029cd932d8ad588f00d034ca70dc9b12774
Update README.md
push time in 2 days
startedhankchizljaw/goron
started time in 2 days
push eventaws-amplify/docs
commit sha 5658c3005545240989fbe41c5fe7b5f541ada1ed
Update codegen.md
commit sha 76092914b6889611cd1d8586e32a1109d4d9f8f8
Merge branch 'master' into renebrandel-patch-2
commit sha 45dbf36d9b7703b4919808aeec74a69b2c99210c
Merge pull request #2209 from aws-amplify/renebrandel-patch-2 Update codegen.md
push time in 2 days
PR merged aws-amplify/docs
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 2 days
issue commentsvelte-society/recipes-mvp
[Question] An idiomatic way to create an Invoice-like form. Should I use stores?
doubt it, bc the updater function doesnt know that row is a reactive variable? i could be wrong. the way to test this is look at the compiled output in the svelte REPL and see what the invalidate function is doing. lmk if u get stuck, im feeling a little lazy to do it myself
comment created time in 2 days
push eventaws-amplify/docs
commit sha e4adad3d47847199fd60cee735fd4207ef1a4880
make API import clear in graphql getting started docs
commit sha c260d197f7f358291739411567035ce1aca49ad8
Merge branch 'master' into patch-2
commit sha 976980944e386a69f0a81287bd380833d0008a21
Merge branch 'master' into patch-2
commit sha f91395c1d92cefec4761afcb35a6e79c121666a5
Merge branch 'master' into patch-2
commit sha 272e8bcbecc196c5c609b057b554047cde211712
Merge pull request #2133 from sw-yx/patch-2 make API import clear in graphql getting started docs
push time in 2 days
push eventtypescript-cheatsheets/react-typescript-cheatsheet
commit sha f5f63ae57b7000dca5b77df50f46504954b4ab48
Update index.md
push time in 2 days
push eventsw-yx/docs-1
commit sha 5740c97f84e19756a8c928bb80a2d5d7df125cd2
Update 40-clear.md Correcting the `AuthEventChannelName` to `AuthChannelEventName`. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
commit sha 7aa68bbdf28674535e16d03a7e93eb353f77cc29
added section to show how to hide the phone number field
commit sha 7390d353c4a9d9bcbcafd9ff4bc3bc30381772b8
fixed path
commit sha 96738df7796f37344e49fd47b43cda99b3287a58
fixed spelling error
commit sha e8e68e54d9c67ce30c5d42622aab48025348f52c
removed unnecessary styling prop
commit sha ccb19967eb50cc3b2bfed0aacd555c2bab93c663
Merge pull request #2150 from dabit3/nader/ui-react-authenticator-form-customization Added section to show how to hide the phone number field
commit sha ed12b8a4d288a187f9ac6bd994ea47b836d3f291
Merge branch 'master' into patch-1
commit sha 8626d3748890f2c157ba69e8e1a82a4f874d50bd
Update directives.md Pointed to where the key can be found for local execution - I was missing this info when trying to follow the docs which cost me some time
commit sha 1189edc1ff1c20c1eb911361e89078853d886c13
Correct key name ("myKey" to "ExampleKey") https://docs.amplify.aws/lib/storage/getting-started/q/platform/ios#initialize-amplify-storage
commit sha 1d6b440a63a4ba50f68af2e284ee1b2a02e3e136
updates to AmplifyAuthenticator docs
commit sha eeabc638989d987fe6a1399f53a4e21a3a8c431d
added the basic flow as an intro, updates to css working for layout
commit sha a49adef76a7aadd4e9bfe351bbfd58acae212fe6
Merge pull request #2160 from dabit3/nader/authenticator-updates Updates to AmpllifyAuthenticator docs
commit sha 46ed8767111ecd337b143f0bf3ef0e8fa15b300b
fix: add amplify.json file documentation
commit sha 972caa2fc7cfdbed288e51e882bb66a2e095a0d1
Merge pull request #2161 from attilah/featflags fix: add amplify.json file documentation
commit sha 6a5d8d54ab56a8f6b2a668afcb5d3e67c4999c0d
Merge branch 'master' into patch-1
commit sha bac19bd0ead9ca1ca19ffca966e03afc11af24c9
Merge branch 'master' into patch-1
commit sha 5396e4e959c5e1c62e227ab52e1880df4ed74c17
Merge pull request #2146 from watanabethais/patch-1 Update 40-clear.md
commit sha a65ea30d55a370359a24bd22a059808150795a2b
Merge branch 'master' into patch-1
commit sha e39d6be2f74a88fca6387873a3978c4563ba944c
Merge pull request #2156 from TitouanVanBelle/patch-1 Correct key name ("myKey" to "ExampleKey")
commit sha 6da45e92bcb322533ddf26fee3ae4ca74c7f84f5
Addresses #2157
push time in 2 days
issue commentsvelte-society/recipes-mvp
[Question] An idiomatic way to create an Invoice-like form. Should I use stores?
@frederikhors there is an old issue here https://github.com/svelte-society/recipes-mvp/issues/15
which links to this fundamental change in svelte behavior https://github.com/svelte-society/recipes-mvp/pull/37/files
and this code sample https://github.com/svelte-society/recipes-mvp/pull/16/files
havent tried on your case but see if it helps
comment created time in 2 days
push eventsvelte-society/recipes-mvp
commit sha f2a6719ef87869811e2cea7c1bd885a21a898e2a
fixed bug on Shadowed variables example
commit sha 9bfb732709d915a932f42e363a09e0bf33729ea7
Merge pull request #58 from opensas/patch-2 fixed bug on Shadowed variables example
push time in 2 days
issue commentsvelte-society/recipes-mvp
[Question] An idiomatic way to create an Invoice-like form. Should I use stores?
interesting.
-
it's fine. using stores is always optional.
-
this is tricky. @kevmodrome whats the recommended way to deeply update objects within arrays again? i feel like we have a recipe for that somewhere
comment created time in 2 days
issue commentaws-amplify/docs
[Feedback] Webpack Error "Insufficient number of arguments or no entry"

comment created time in 2 days
push eventaws-amplify/docs
commit sha 5642fc4ce73807383b674dbcd06ac7f8fd7bc324
Remove Swift example from DataStore JS docs fixes #2205
commit sha d82c684101e2b3933c90e5cf6a32403207acfdd4
Merge pull request #2206 from cedricgrothues/patch-1 Remove Swift example from DataStore JS docs
push time in 2 days
issue closedaws-amplify/docs
JavaScript DataStore docs contain a Swift code block
Describe the bug
The JavaScript DataStore docs contain Swift example code.
To Reproduce
- Go to https://docs.amplify.aws/lib/datastore/sync/q/platform/js#update-and-delete-with-predicate.
- Scroll down to the second code block.
Expected behavior The second code block shouldn't be there.
Desktop:
- OS: MacOS
- Browser safari
- Version 13.1.1
closed time in 2 days
cedricgrothuesPR merged aws-amplify/docs
Issue: #2205
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 2 days
PR closed aws-amplify/docs
closes https://github.com/aws-amplify/docs/issues/2205
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 2 days
PR opened aws-amplify/docs
closes https://github.com/aws-amplify/docs/issues/2205
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr created time in 2 days
push eventsveltejs/community
commit sha e51e2719f684a4ada692a60a0364b283c8c3fc19
Add daily.dev as a svelte resource
commit sha 7d25117f67d0c43e4ce164f4f8b757cd78e9ef09
Merge pull request #263 from idoshamun/patch-1 Add daily.dev as a svelte resource
push time in 2 days
pull request commentsveltejs/community
Add daily.dev as a svelte resource
Generating Deploy Preview! beep boop beep boop
Building with commit e51e2719f684a4ada692a60a0364b283c8c3fc19
https://app.netlify.com/sites/svelte-community/deploys/5f2d6d0a0372cc0007399295
comment created time in 2 days
issue commentvitejs/vite
Vite not working with aws-amplify package
(leaving breadcrumbs) related issue - https://github.com/aws/aws-sdk-js-v3/issues/1364 - think this was a bad release that we pinned to and we need to update the versions.
comment created time in 3 days
issue commentaws-amplify/amplify-js
cc @dabit3 - another issue of breaking changes.
comment created time in 3 days
push eventsveltejs/community
commit sha e0717ed15e09d18987223c55c346d3a71da33bab
Added the Extensive-IT logo for the WhosUsingSvelte page
commit sha 20d9c2a6eef4fdd41cb13df7bdfd1aa3855347cd
Extensive-IT logo without padding
commit sha 80bebc8ffcc2b7a4211893cd880664640664b3f1
Merge pull request #262 from MennoAret/add-extensive-it-logo Add extensive it logo
push time in 3 days
pull request commentsveltejs/community
Generating Deploy Preview! beep boop beep boop
Building with commit 20d9c2a6eef4fdd41cb13df7bdfd1aa3855347cd
https://app.netlify.com/sites/svelte-community/deploys/5f2d14a6bd40f000081396f8
comment created time in 3 days
push eventreact-sfc/react-sfc-swyx
commit sha d4add3195f2d4dcb3a7ab3f75696b204f0f2b3f0
add ts port
push time in 3 days
issue commentacornjs/acorn
hello! just ran into these exact issues and figured i might take a crack at it. i'm just not clear about the scope of work - is it as broad as "just upgrade acorn's types to incorporate all the DefinitelyTyped's contributions"? I'm also unclear how you want to be injecting the ESTree stuff as well. let me know what clear intentions you have, and what is still an open qtn, and i could take a crack at it
comment created time in 3 days
push eventreact-sfc/react-sfc-proposal
commit sha 832df92b5adeb194bedf65dbd6eb405b406a951a
proposal only
push time in 3 days
push eventreact-sfc/react-sfc-swyx
commit sha 8ba31409a6ab41d3e3b948de173355e29b104b58
readme
commit sha 083eac5a35216a6d19ec3d42dbc3d54e56cf8556
readme
push time in 3 days
push eventreact-sfc/react-sfc-proposal
commit sha 083eac5a35216a6d19ec3d42dbc3d54e56cf8556
readme
push time in 3 days
push eventreact-sfc/react-sfc-proposal
commit sha 8ba31409a6ab41d3e3b948de173355e29b104b58
readme
push time in 3 days
push eventreact-sfc/react-sfc-proposal
commit sha 06529a21abe55bc3aad41412999ff08c6bf31d3e
v2
commit sha 1eed3cb56be5b01d37e14e6139e21069e5f9ee9d
Update README.md
commit sha a7df4a25a551a30686dba467601522ac94827e7e
Create toc.yml
commit sha 034ad501138cdc3671169d2d676fe205398068c7
Update README.md
commit sha 3e61565b1d1b27f7b83e505c18ef942341edd4af
Update README.md
commit sha 79f10dac8313411902b6470b0f10a6d7b97ecc39
Update README.md
commit sha 7f0b51e52d42a822e1a4fd2e2f476a01709d978f
Update README.md
commit sha 5dcadd619ca029295912b108ee4ee60c6134de3c
tweak format
commit sha 77f8c4da474acdb06581a36bbebe00ceb951a67d
readme
commit sha a77a1b3d3b91829f722d30a8b429fa5b9c6e598c
readme
commit sha 95d290f11b355a0202e442a3fed0fd062185f40a
add ref impl
commit sha e2a784032acbd79010271d94739a07ef285623c5
add ref impl
commit sha 249d57af5248302b4c80c3da05a4bc85a8b8f629
Update toc.yml
commit sha 110b87040b63480488bd958ec3915ed979242366
docs: update TOC
commit sha ec0f29775626852b964969968f16883ffee4224b
Update README.md
commit sha 776c1669c421f5c2f4e4d5aba89c1f690124e90e
Update README.md
commit sha d88acd23383f9b66ca30944a4940c4ec75cbe356
Update README.md
commit sha 18ab7cd7693f1e15a64dfd80d82283fd1d234921
docs: update TOC
commit sha 4399259195280cb1e80787e13ae80d47baee2f62
Update README.md
push time in 3 days
push eventsw-yx/spark-joy
commit sha b4b349df24fbb952f3e525fb70fcc3662ef2c97f
Update README.md
push time in 3 days
issue commentvitejs/vite
Vite not working with aws-amplify package
suspect it's AWS fault. i tried to replicate and got a slightly different error. theyre not shipping esm files

comment created time in 3 days
push eventsw-yx/react-demos
commit sha fedbf63e18d213f47d3043e29c371c66f50c99ee
fix up caht
commit sha ecd2ca38b9cbc96f18798c3278c226365eb1fa1c
0.0.11
push time in 3 days
push eventsw-yx/supabasetest1
commit sha c75aeb55b5ef258449c90fd9988b99d9b1e53b0c
Update index.js
push time in 3 days
issue openedsupabase/supabase
slack clone example documentation improvement
-
I'm submitting a ... [x] bug report [ ] feature request [ ] question about the decisions made in the repository [ ] question about how to use this project
-
Summary
hi! in here: https://github.com/supabase/supabase/tree/master/examples/slack-clone#how-to-use
it is not at all clear which is the NEXT_PUBLIC_SUPABASE_URL and which is the NEXT_PUBLIC_SUPABASE_KEY. recommend clarifying a little.
created time in 3 days
issue commentaws-amplify/amplify-cli
[Feature Request] `amplify configure` should work for existing IAM user
thanks, i am aware. i am pointing out that amplify configure is overoptimized for the new user experience because it always sends you out to create a new IAM user.
comment created time in 3 days
push eventaws-amplify/docs
commit sha 06aa972ae87fc939ed40b30a2c1f385e2e5aa8e1
Update generate-model.md
commit sha bac8ad94f6dea6fdb7863fa2b55b0741988e13a6
Merge branch 'master' into patch-6
commit sha 936dca74446d6e178deba127efb22cc751e81198
Merge branch 'master' into patch-6
commit sha eafcd968f2fa328d97e4f6f94c6472241f032152
Merge pull request #2195 from KristinaPeterson/patch-6 Update generate-model.md
push time in 3 days
PR merged aws-amplify/docs
@mohitsriv Description of changes: Small language changes throughout to increase customer success in completing tutorial.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 3 days
push eventKristinaPeterson/docs
commit sha 1d4723fa1488166d189efeb45cb1224e066685ce
Add new guide Cognito/Lambda/DynamoDB
commit sha 11038fd58884d1265e01c98b8142ac842d224aa3
add USERTABLE to spellcheck list helps address https://github.com/aws-amplify/docs/pull/2188#pullrequestreview-460823733
commit sha d7e95f89e0820bb1190b71107906e5fa1be6c956
Merge pull request #2201 from aws-amplify/sw-yx-patch-2 (fix) add USERTABLE to spellcheck list
commit sha d12e30807d86b110ac756b1bb6aa784cf1706cc8
Merge branch 'master' into guide-cognito-lambda-dynamodb
commit sha 2fc11719678ec5de6ecd3ab6e0632153cc52c861
Merge pull request #2188 from khalidbourhaba/guide-cognito-lambda-dynamodb Add new guide Cognito/Lambda/DynamoDB
commit sha d0d34cf9ce47c3bec3c51d76df7497a1f713f7a4
Clean up authenticator docs (#2187) * Clean up authenticator docs * Remove unused authenticator.md files and remove old usage from sub components * Remove basic usage wording * Simplify hiding form fields doc
commit sha 936dca74446d6e178deba127efb22cc751e81198
Merge branch 'master' into patch-6
push time in 3 days
push eventsw-yx/gpt3-list
commit sha e51fa940f11ef2c0000989e4952c7180b58dacf7
Update README.md
push time in 3 days
push eventsw-yx/spark-joy
commit sha b33684eda4740a6ca75d1da6413cae352ffe02b5
Update README.md
push time in 3 days
push eventsw-yx/spark-joy
commit sha 559c117a7c80cc499c93d9c50c5291faeb036f9f
Update README.md
push time in 3 days
issue commenttypescript-cheatsheets/react-typescript-cheatsheet
[Todo] Instructions for How to type an untyped module?
:) great stuff. happy to share this knowledge. i believe its a skill that will last our entire careers
comment created time in 4 days
PR opened aws-amplify/docs
helps address https://github.com/aws-amplify/docs/pull/2188#pullrequestreview-460823733
pr created time in 4 days
pull request commentaws-amplify/docs
Add new guide Cognito/Lambda/DynamoDB
@mauerbac what is the process for resolving spellcheck issues like this? need to add USERTABLE to the approvelist
comment created time in 4 days
push eventsw-yx/sw-yx
commit sha 45a481feaf009193e924f73789f0e3ba6bf1c1e9
Link image to repositories page
commit sha 62a5333b20f3b06a1c2cdb0b24f7ff6fefd3bed2
Merge pull request #20 from MaxFork/master Link image to repositories page
push time in 4 days
PR merged sw-yx/sw-yx
Hi @sw-yx,
Link image to the repositories page.
Cheers,
pr closed time in 4 days
startedtimbray/a-cloud-prfaq
started time in 4 days
push eventsw-yx/spark-joy
commit sha 476cd20ca0a1f6b36baae3f9d1b94de72f67fd1d
Update README.md
push time in 4 days
push eventtypescript-cheatsheets/node-typescript-cheatsheet
commit sha 2b041af44c9964f8eb35c2aaa16814d5da77abd1
Update README.md
push time in 4 days
push eventsw-yx/spark-joy
commit sha b27bbf93e00f3a108b83acc5e72ec83b581d22b0
Update README.md
push time in 4 days
fork sw-yx/babel-handbook
:blue_book: A guided handbook on how to use Babel and how to create plugins for Babel.
fork in 4 days
startedjamiebuilds/babel-handbook
started time in 4 days
push eventKristinaPeterson/docs
commit sha 8626d3748890f2c157ba69e8e1a82a4f874d50bd
Update directives.md Pointed to where the key can be found for local execution - I was missing this info when trying to follow the docs which cost me some time
commit sha 34c2e58e3025a1595d0ab02475dafc3f8fa54d06
Merge branch 'master' into patch-1
commit sha db72df1c21cbd1e4ba82477220813d695f73484a
Merge branch 'master' into patch-1
commit sha 65c902c11e4fbd968964f6874705d4fe2e645d46
Implemented proposed changes
commit sha 888e3746e24384784d8c4d55ae5382c62b9231a5
Update setup.md
commit sha 1a593f029869be9685b552958cda99253bb38d0d
Update add-api.md
commit sha 77441f03c751e420e85901dcfef576c300a75e11
removed duplicate "product" from list
commit sha b15582506a74ca87f398c1826bcba50cca85604f
backticks instead of front ticks for code
commit sha a02e812ed4d78bd7effd76cca9aee7298a9653e6
deleted some words 'to the subscription' doesn't make sense, since the context is talking about a query
commit sha 77bc056ae558c940dfcd7bda081c51b4c6a6d51c
fix https://github.com/aws-amplify/docs/issues/2180 fix https://github.com/aws-amplify/docs/issues/2180
commit sha 3889ee2c5fe3a9dcddfa3b16caa572fe44e5a3af
Merge pull request #2179 from tobiasfeil/patch-8 backticks instead of front ticks for code
commit sha ea7189f3f15ccae56d08572971fef3e83d9a4854
Merge branch 'master' into patch-4
commit sha 0efea58279413b07ce1a107fd5127b34d78da6ac
Merge branch 'master' into patch-11
commit sha 32771301a55e830fc38d3f0b1f0cb6819eac8658
Merge pull request #2178 from tobiasfeil/patch-4 removed duplicate "product" from list
commit sha 6d71dd035e6292bf29015ced5766c6d8f7a60fa4
Merge branch 'master' into patch-11
commit sha bf12cf21db433a9ba484709c1b14ae7956bbfe9a
Merge pull request #2181 from tobiasfeil/patch-11 deleted some words
commit sha a3ad84015c6d1e69b51c7fc4148d08312c24ccea
Merge branch 'master' into patch-1
commit sha 3ea620d7be8a7f43359b827d82c3377734b765da
Merge branch 'master' into sw-yx-patch-1
commit sha 38ae8fe33ec111af5d41f331958f207516c0cbd4
Merge pull request #2183 from aws-amplify/sw-yx-patch-1 fix https://github.com/aws-amplify/docs/issues/2180
commit sha 3d73ae03acf4a64791dea63fc0633b29af6fab27
Added commands table and improved formatting
push time in 4 days
issue commentaws-amplify/amplify-cli
What is the proper way to get the current user email in a lambda function?
i think you have it right, for generic functions! 👍
note that lambda triggers also attach it onto event.request.userAttributes.email. example here: https://dev.to/aws/building-a-serverless-jamstack-ecommerce-store-with-gatsby-aws-303f#authentication
the claims thing is unrelated i think
comment created time in 4 days
push eventaws-amplify/docs
commit sha 888e3746e24384784d8c4d55ae5382c62b9231a5
Update setup.md
commit sha 5315d21e38ebeb3a2d54e9d5e19d116bdf0fd0b1
Merge branch 'master' into patch-5
commit sha 4ae8bfa751d78b7836c9127461be5ee2b6a9d298
Merge pull request #2196 from KristinaPeterson/patch-5 Update setup.md
push time in 4 days
PR merged aws-amplify/docs
@mohitsriv
Description of changes: Small language changes throughout to increase customer success in completing tutorial and to conform to inclusive language. Updated styling of references to Xcode UI elements for consistency throughout tutorial.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 4 days
startedggoodman/velcro
started time in 4 days
push eventaws-amplify/docs
commit sha 1a593f029869be9685b552958cda99253bb38d0d
Update add-api.md
commit sha 4e2448ae3c8d7ecdd2c19c0558af605a313582d7
Merge branch 'master' into patch-8
commit sha ee0025aba75f26a4b97ddc02378f1c6b0f28a951
Merge pull request #2193 from KristinaPeterson/patch-8 Update add-api.md
push time in 4 days
PR merged aws-amplify/docs
@mohitsriv
Description of changes: Small language changes throughout to increase customer success in completing tutorial.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr closed time in 4 days
push eventKristinaPeterson/docs
commit sha 8626d3748890f2c157ba69e8e1a82a4f874d50bd
Update directives.md Pointed to where the key can be found for local execution - I was missing this info when trying to follow the docs which cost me some time
commit sha 34c2e58e3025a1595d0ab02475dafc3f8fa54d06
Merge branch 'master' into patch-1
commit sha db72df1c21cbd1e4ba82477220813d695f73484a
Merge branch 'master' into patch-1
commit sha 65c902c11e4fbd968964f6874705d4fe2e645d46
Implemented proposed changes
commit sha 77441f03c751e420e85901dcfef576c300a75e11
removed duplicate "product" from list
commit sha b15582506a74ca87f398c1826bcba50cca85604f
backticks instead of front ticks for code
commit sha a02e812ed4d78bd7effd76cca9aee7298a9653e6
deleted some words 'to the subscription' doesn't make sense, since the context is talking about a query
commit sha 77bc056ae558c940dfcd7bda081c51b4c6a6d51c
fix https://github.com/aws-amplify/docs/issues/2180 fix https://github.com/aws-amplify/docs/issues/2180
commit sha 3889ee2c5fe3a9dcddfa3b16caa572fe44e5a3af
Merge pull request #2179 from tobiasfeil/patch-8 backticks instead of front ticks for code
commit sha ea7189f3f15ccae56d08572971fef3e83d9a4854
Merge branch 'master' into patch-4
commit sha 0efea58279413b07ce1a107fd5127b34d78da6ac
Merge branch 'master' into patch-11
commit sha 32771301a55e830fc38d3f0b1f0cb6819eac8658
Merge pull request #2178 from tobiasfeil/patch-4 removed duplicate "product" from list
commit sha 6d71dd035e6292bf29015ced5766c6d8f7a60fa4
Merge branch 'master' into patch-11
commit sha bf12cf21db433a9ba484709c1b14ae7956bbfe9a
Merge pull request #2181 from tobiasfeil/patch-11 deleted some words
commit sha a3ad84015c6d1e69b51c7fc4148d08312c24ccea
Merge branch 'master' into patch-1
commit sha 3ea620d7be8a7f43359b827d82c3377734b765da
Merge branch 'master' into sw-yx-patch-1
commit sha 38ae8fe33ec111af5d41f331958f207516c0cbd4
Merge pull request #2183 from aws-amplify/sw-yx-patch-1 fix https://github.com/aws-amplify/docs/issues/2180
commit sha 3d73ae03acf4a64791dea63fc0633b29af6fab27
Added commands table and improved formatting
commit sha 88a97ba2b0b0f3810a5cacecd146398c10115aab
Add Angular and Vue examples
commit sha e7ee6b2207cf27a95a16abad1283301261124465
Merge branch 'master' into patch-1
push time in 4 days
push eventsw-yx/react-demos
commit sha f745915db5c6ac30376dfcc0187ad5853a0b0787
i can chat with myself
push time in 4 days
push eventreact-sfc/react-sfc-proposal
commit sha 4399259195280cb1e80787e13ae80d47baee2f62
Update README.md
push time in 4 days