@digitaldefiance/express-suite-starter 3.0.2 → 4.19.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -1
- package/package.json +1 -1
- package/scaffolding/react/src/app/app.tsx.mustache +17 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Node Express Suite Starter
|
|
2
2
|
|
|
3
|
-
<
|
|
3
|
+
<img src="assets/albatross.svg" style="height: 200px;" />
|
|
4
4
|
|
|
5
5
|
Automated generator for MERN stack monorepos using [@digitaldefiance/node-express-suite](https://www.npmjs.com/package/@digitaldefiance/node-express-suite).
|
|
6
6
|
|
|
@@ -25,6 +25,20 @@ Part of [Express Suite](https://github.com/Digital-Defiance/express-suite)
|
|
|
25
25
|
- ✅ **Validation** - Post-generation checks with fix suggestions
|
|
26
26
|
- 🖥️ **Cross-Platform** - Windows, macOS, and Linux support
|
|
27
27
|
|
|
28
|
+
**Express Suite** is a comprehensive TypeScript framework providing a complete foundation for building secure, scalable, and internationalized web applications. It integrates enterprise-grade cryptography, multi-language internationalization, and a full-stack MERN framework—all structured as modular packages for modern development workflows.
|
|
29
|
+
|
|
30
|
+
Formerly known as **Project Albatross**, the suite draws inspiration from the great albatross bird, symbolizing endurance and the ability to traverse vast distances—qualities reflected in the suite's goal to deliver far-reaching, reliable solutions.
|
|
31
|
+
|
|
32
|
+
Express Suite Starter is a scaffolding generator which can produce fully functional application boilerplate using all of Express Suite's features (internationalization, mnemonic login, backup codes, etc):
|
|
33
|
+
|
|
34
|
+
<img width="1071" height="1051" alt="Screenshot 2026-02-22 at 11 39 01 AM" src="https://github.com/user-attachments/assets/5cc74425-aa8a-4a10-94f1-5a1e2979b646" />
|
|
35
|
+
|
|
36
|
+
<img width="1071" height="1051" alt="Screenshot 2026-02-22 at 11 40 09 AM" src="https://github.com/user-attachments/assets/4b6c9c13-9452-4fa2-9356-5cdd1f26f42d" />
|
|
37
|
+
|
|
38
|
+
<img width="1071" height="1051" alt="Screenshot 2026-02-22 at 11 40 19 AM" src="https://github.com/user-attachments/assets/2ef7614f-fa96-4af5-843b-663a5322bc38" />
|
|
39
|
+
|
|
40
|
+
<img width="1071" height="1051" alt="Screenshot 2026-02-22 at 11 39 50 AM" src="https://github.com/user-attachments/assets/92dda51f-204e-4e1a-84bb-367b6bd0a44a" />
|
|
41
|
+
|
|
28
42
|
## Quick Start
|
|
29
43
|
|
|
30
44
|
### NPX (Recommended)
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ import { Route, Routes, useNavigate } from 'react-router-dom';
|
|
|
6
6
|
import '../styles.scss';
|
|
7
7
|
import SplashPage from './pages/SplashPage';
|
|
8
8
|
import { createAppTheme } from './theme.tsx';
|
|
9
|
-
import { AppThemeProvider, DashboardPage, MenuProvider, I18nProvider as TranslationProvider, AuthProvider, SuiteConfigProvider, ApiAccess, ChangePasswordFormWrapper, VerifyEmailPageWrapper, RegisterFormWrapper, UserSettingsFormWrapper, LogoutPageWrapper, LoginFormWrapper, PrivateRoute, UnAuthRoute, TopMenu, TranslatedTitle, BackupCodeLoginWrapper, BackupCodesWrapper } from '@digitaldefiance/express-suite-react-components';
|
|
9
|
+
import { AppThemeProvider, DashboardPage, MenuProvider, I18nProvider as TranslationProvider, AuthProvider, SuiteConfigProvider, ApiAccess, ChangePasswordFormWrapper, VerifyEmailPageWrapper, RegisterFormWrapper, UserSettingsFormWrapper, LogoutPageWrapper, LoginFormWrapper, PrivateRoute, UnAuthRoute, TopMenu, TranslatedTitle, BackupCodeLoginWrapper, BackupCodesWrapper, ForgotPasswordFormWrapper, ResetPasswordFormWrapper } from '@digitaldefiance/express-suite-react-components';
|
|
10
10
|
import { environment } from '../environments/environment';
|
|
11
11
|
import { {{WorkspaceName}}StringKey, ComponentId, i18nEngine } from '{{namespace}}/lib';
|
|
12
12
|
import AlbatrossLogo from '../assets/albatross.svg';
|
|
@@ -96,6 +96,22 @@ const InnerApp: FC = () => {
|
|
|
96
96
|
</PrivateRoute>
|
|
97
97
|
}
|
|
98
98
|
/>
|
|
99
|
+
<Route
|
|
100
|
+
path="/forgot-password"
|
|
101
|
+
element={
|
|
102
|
+
<UnAuthRoute>
|
|
103
|
+
<ForgotPasswordFormWrapper />
|
|
104
|
+
</UnAuthRoute>
|
|
105
|
+
}
|
|
106
|
+
/>
|
|
107
|
+
<Route
|
|
108
|
+
path="/reset-password"
|
|
109
|
+
element={
|
|
110
|
+
<UnAuthRoute>
|
|
111
|
+
<ResetPasswordFormWrapper />
|
|
112
|
+
</UnAuthRoute>
|
|
113
|
+
}
|
|
114
|
+
/>
|
|
99
115
|
<Route path="/backup-code" element={<BackupCodeLoginWrapper />} />
|
|
100
116
|
<Route
|
|
101
117
|
path="/backup-codes"
|