- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
27 lines
1.0 KiB
Markdown
27 lines
1.0 KiB
Markdown
# require-main-filename
|
|
|
|
[](https://travis-ci.org/yargs/require-main-filename)
|
|
[](https://coveralls.io/r/yargs/require-main-filename?branch=master)
|
|
[](https://www.npmjs.com/package/require-main-filename)
|
|
|
|
`require.main.filename` is great for figuring out the entry
|
|
point for the current application. This can be combined with a module like
|
|
[pkg-conf](https://www.npmjs.com/package/pkg-conf) to, _as if by magic_, load
|
|
top-level configuration.
|
|
|
|
Unfortunately, `require.main.filename` sometimes fails when an application is
|
|
executed with an alternative process manager, e.g., [iisnode](https://github.com/tjanczuk/iisnode).
|
|
|
|
`require-main-filename` is a shim that addresses this problem.
|
|
|
|
## Usage
|
|
|
|
```js
|
|
var main = require('require-main-filename')()
|
|
// use main as an alternative to require.main.filename.
|
|
```
|
|
|
|
## License
|
|
|
|
ISC
|