-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexamples.json
427 lines (427 loc) · 19.6 KB
/
examples.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
{
"$schema": "https://raw.githubusercontent.com/nanlabs/awesome-nan/main/examples.schema.json",
"list": [
{
"name": "Storybook Playground",
"description": "This app was created with the goal to have examples of ours React components, hooks and libraries that are created in different packages in the repository Nancy.js.",
"url": "https://github.com/nanlabs/nancy.js/tree/main/apps/playground/",
"tags": ["Apps and Boilerplates"],
"labels": ["React", "Storybook", "Nancy.js"]
},
{
"name": "@nanlabs/react-hooks",
"description": "This package contains different React hooks that can be used in different projects.",
"url": "https://www.npmjs.com/package/@nanlabs/react-hooks",
"tags": ["Node Packages"],
"labels": ["React", "Hooks", "Custom Hooks"]
},
{
"name": "@nanlabs/react-ui",
"description": "This library provides a set of React components that can be used in any React application",
"url": "https://www.npmjs.com/package/@nanlabs/react-ui",
"tags": ["Node Packages"],
"labels": ["React", "Components", "UI", "Design System"]
},
{
"name": "@nanlabs/react-thirdparty",
"description": "This library provides a set of React components that can be used in any React application. It provides integrations with third party libraries like Google ReCaptcha and more!",
"url": "https://www.npmjs.com/package/@nanlabs/react-thirdparty",
"tags": ["Node Packages"],
"labels": ["React", "Components", "UI", "Design System", "Third Party"]
},
{
"name": "@nanlabs/thirdparty",
"description": "This library provides a set of tools that can be used in any web application. It provides integrations with third party libraries like Google ReCaptcha and more!",
"url": "https://www.npmjs.com/package/@nanlabs/thirdparty",
"tags": ["Node Packages"],
"labels": ["Third Party"]
},
{
"name": "@nanlabs/fp",
"description": "This library provides a set of tools to help you write functional code in TypeScript. It includes tools for type guards, error handling, and more!",
"url": "https://www.npmjs.com/package/@nanlabs/fp",
"tags": ["Node Packages"],
"labels": ["Functional Programming", "TypeScript"]
},
{
"name": "@nanlabs/eslint-config",
"description": "This eslint config is used in our projects to enforce a consistent code style.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config",
"tags": ["Node Packages"],
"labels": ["ESLint"]
},
{
"name": "@nanlabs/eslint-config-ts",
"description": "This eslint config is used in our projects to enforce a consistent code style for TypeScript projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-ts",
"tags": ["Node Packages"],
"labels": ["ESLint", "TypeScript"]
},
{
"name": "@nanlabs/eslint-config-react",
"description": "This eslint config is used in our projects to enforce a consistent code style for React projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-react",
"tags": ["Node Packages"],
"labels": ["ESLint", "React", "TypeScript"]
},
{
"name": "@nanlabs/eslint-config-next",
"description": "This eslint config is used in our projects to enforce a consistent code style for Next.js projects.",
"url": "https://www.npmjs.com/package/@nanlabs/eslint-config-next",
"tags": ["Node Packages"],
"labels": ["ESLint", "Next.js", "TypeScript"]
},
{
"name": "React Boilerplate",
"description": "A simple but powerful boilerplate to start a React project powered by Vite. Boilerplate generated using [create-awesome-node-app](https://www.npmjs.com/package/create-awesome-node-app) contains full CI/CD setup with GitHub Actions and Docker. It also contains a full local development setup with hot reload and production ready setup with minification and optimization. It also contains a full test setup with Jest and React Testing Library.",
"url": "https://github.com/nanlabs/react-boilerplate",
"tags": ["Apps and Boilerplates"],
"labels": ["React"]
},
{
"name": "TypeScript Monorepo Boilerplate",
"description": "A simple but powerful boilerplate to start a TypeScript monorepo project powered Turborepo.",
"url": "https://github.com/nanlabs/ts-monorepo-boilerplate",
"tags": ["Apps and Boilerplates"],
"labels": [
"TypeScript",
"Turborepo",
"Monorepo",
"Boilerplate",
"React",
"NPM Workspaces",
"Changesets",
"ESLint",
"Prettier",
"Jest",
"Nest.js",
"Storybook"
]
},
{
"name": "Supercharge Your Website with Core Web Vitals",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/seo-and-core-web-vitals",
"description": "Learn how to optimize your website's performance and improve SEO using Core Web Vitals. Discover the key metrics, tools, and techniques to deliver an exceptional user experience.",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Website Optimization and Performance"
],
"labels": [
"Core Web Vitals",
"SEO",
"Website Performance",
"User Experience",
"Google PageSpeed Insights",
"Lighthouse",
"Web Vitals Extension"
]
},
{
"name": "Prop Drilling",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-prop-drilling/",
"description": "This example shows how to pass data from a parent component to a child component using props.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React"]
},
{
"name": "Context",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-context/",
"description": "This example shows how to use React Context to share data between components.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React"]
},
{
"name": "Global State",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-global-state/",
"description": "This example shows how to use a global state using React Hooks.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React"]
},
{
"name": "Hookstate",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-hookstate/",
"description": "This example shows how to use Hookstate to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React"]
},
{
"name": "Teaful",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/hooks-teaful/",
"description": "This example shows how to use Teaful to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React"]
},
{
"name": "XState",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/fsm-xstate/",
"description": "This example shows how to use XState to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "XState"]
},
{
"name": "React Query",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/api-react-query/",
"description": "This example shows how to use React Query to fetch data from an API.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "React Query"]
},
{
"name": "Effector",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-effector/",
"description": "This example shows how to use Effector to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Effector"]
},
{
"name": "Akita",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-akita/",
"description": "This example shows how to use Akita to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Akita"]
},
{
"name": "Rxjs",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-rxjs/",
"description": "This example shows how to use Rxjs to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Rxjs"]
},
{
"name": "Storeon",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/reactive-storeon/",
"description": "This example shows how to use Storeon to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Storeon"]
},
{
"name": "Jotai",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-jotai/",
"description": "This example shows how to use Jotai to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Jotai"]
},
{
"name": "Recoil",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-recoil/",
"description": "This example shows how to use Recoil to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Recoil"]
},
{
"name": "AgileTs",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/atomic-agilets/",
"description": "This example shows how to use AgileTs to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "AgileTs"]
},
{
"name": "Zustand",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-zustand/",
"description": "This example shows how to use Zustand to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Zustand"]
},
{
"name": "Redux Toolkit",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-redux-toolkit/",
"description": "This example shows how to use Redux Toolkit to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Redux Toolkit"]
},
{
"name": "Rematch",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-rematch/",
"description": "This example shows how to use Rematch to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Rematch"]
},
{
"name": "Unistore",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/unidirectional-unistore/",
"description": "This example shows how to use Unistore to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Unistore"]
},
{
"name": "MobX",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-mobx/",
"description": "This example shows how to use MobX to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "MobX"]
},
{
"name": "Valtio",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-valtio/",
"description": "This example shows how to use Valtio to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "Valtio"]
},
{
"name": "MobX State Tree",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-mobx-state-tree/",
"description": "This example shows how to use MobX State Tree to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "MobX State Tree"]
},
{
"name": "React Easy State",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/bidirectional-easy-state/",
"description": "This example shows how to use React Easy State to manage state.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "React Easy State"]
},
{
"name": "Microfrontend with Shared React Router and React Components",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-app-react-components/",
"description": "This example has a microfrontend project that demonstrates the usage of a shared router in a React application",
"tags": ["Examples > Frontend > Microfrontend"],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Microfrontend with Shared React Router and React Application",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-shell-react-app-shared-routing/",
"description": "project that demonstrates the usage of a shared router in a container application made with React and an independent application made with React and Vite",
"tags": ["Examples > Frontend > Microfrontend"],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Microfrontend with Shared React Router and Vue Application",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/microfrontend-react-shell-react-vue-app/",
"description": "This example has a microfrontend project that demonstrates the usage of a shared router in a container application made with React and an independent application made with Vue and Vite",
"tags": ["Examples > Frontend > Microfrontend"],
"labels": [
"React",
"Vue",
"Module federation",
"Vite",
"Webpack",
"Shared router",
"Microfrontend"
]
},
{
"name": "Comparative Analysis between styled-components and Tailwind CSS",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/styled-components-vs-tailwindcss/",
"description": "Article that presents a comparative analysis of styled-components and Tailwind CSS, focusing on practical implementations of a UI Challenge using both libraries.",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Styling and CSS"
],
"labels": [
"styled-components",
"Tailwind CSS",
"CSS",
"CSS-in-JS",
"Analysis"
]
},
{
"name": "Proof of Concept: Million, The Virtual DOM Replacement for React.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/million-poc-performance/",
"description": "This is a POC that shows how to use Million and comparative analysis of Performance between Million and React.",
"tags": ["Examples > Frontend > Virtual Dom"],
"labels": ["Performance", "React", "Virtual Dom", "Rendering", "Million"]
},
{
"name": "React Security Best Practices Guide",
"description": "This checklist provides React security best practices to assist you and your team in identifying and addressing security issues within your React applications. Additionally, it includes guidance on how to automate security testing for your React code and automatically remedy any security-related issues.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-security-best-practices",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Security Best Practices"
],
"labels": [
"React",
"Security",
"Best Practices",
"Frontend",
"Automated Testing",
"Security Issues"
]
},
{
"name": "NextJS with SWR",
"description": "This example shows how to use SWR with NextJS for data fetch and mutate.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/nextjs-with-swr-example",
"tags": [
"Examples > Frontend > React State Management",
"Examples > Frontend > NextJs"
],
"labels": ["NextJS", "SWR", "React", "TypeScript"]
},
{
"name": "SWR",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/state-management/examples/api-swr/",
"description": "This example shows how to use SWR to fetch data from an API.",
"tags": ["Examples > Frontend > React State Management"],
"labels": ["React", "SWR"]
},
{
"name": "React Native with expo router",
"description": "This example shows how to use expo router with React Native.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-native-expo-router/",
"tags": ["Examples > Frontend > React Native > Expo"],
"labels": ["React Native", "Expo", "React"]
},
{
"name": "React Native with expo router and shared routes",
"description": "This example shows how to use expo router with React Native and shared routes.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/react-native-expo-router-with-shared-routes/",
"tags": ["Examples > Frontend > React Native > Expo"],
"labels": ["React Native", "Expo", "React"]
},
{
"name": "The Ultimate React State Management Framework",
"description": "This article presents a step-by-step framework will lead you to make informed decisions, ensuring your app is both robust and maintainable. Let's enhance your tech stack!",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/the-ultimate-react-state-management-framework",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > React State Management"
],
"labels": [
"React",
"State Management",
"Framework",
"Best Practices",
"Frontend"
]
},
{
"name": "Navigator Clipboard API Integration Guide",
"description": "Delve into our detailed guide to integrate the Navigator Clipboard API into your web applications. Learn to implement seamless content sharing through copying text, images, and HTML directly to the clipboard, enhancing user experience and productivity.",
"url": "https://github.com/nanlabs/frontend-reference/tree/main/examples/navigator-clipboard-api-integration",
"tags": [
"Guides, Tutorials and Best Practices",
"Examples > Frontend > Clipboard Integration"
],
"labels": [
"Clipboard API",
"JavaScript",
"HTML5",
"User Experience",
"Frontend Development",
"Interactivity",
"Content Sharing",
"Web Standards",
"Accessibility",
"CSS3"
]
}
]
}