
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
Flamme is a meta-framework that leverages the h3 HTTP server and React for both server-side rendering (SSR) and client-side rendering, providing a seamless development experience for modern web applications.
Flamme is a metaframework that leverages the power of the h3 HTTP server and React for both server-side rendering (SSR) and client-side rendering. This framework aims to provide a seamless development experience for building modern web applications.
h3 server for handling HTTP requests.To install Flamme, you can use npm:
npm install flamme
To create a new Flamme project, run:
npx create-flamme-app my-new-app --template=ts
cd my-new-app
npm install
To start the development server, use the following command:
npm run dev
This will start the development server with Hot Module Replacement (HMR) enabled.
To build your application for production, run:
npm run build
After building your application, you can start the production server with:
npm start
A typical Flamme project structure looks like this:
my-new-app/
├── node_modules/
├── public/
├── src/
│ ├── client/
│ │ ├── components/
│ │ ├── routes.tsx
│ │ └── index.tsx
│ ├── server/
│ │ ├── api/
│ │ └── index.ts
│ └── index.tsx
├── .gitignore
├── package.json
└── flamme.config.ts
Flamme can be configured via a flamme.config.ts file in the root of your project. Here is an example configuration:
export default defineFlammeConfig({
root: '/',
base: './',
serverBaseUrl: '/api',
clientDir: 'src/client',
serverDir: 'src/server',
buildDir: 'dist',
publicDir: 'public',
cacheDir: '.flamme',
devServerPort: 3000,
hmrServerPort: 3001,
hmrOverlay: true,
envPublicPrefix: 'PUBLIC_',
css: {
cssModules: {
localsConvention: 'camelCase',
scopeBehaviour: 'local',
generateScopedName: 'styles__[local]__[hash:base64:6]',
// for more options, see postcss-modules documentation
},
sass: {
filter: /\.scss$/,
type: 'css',
// for more options, see esbuild-sass documentation
},
less: {
// for more options, see esbuild-less documentation}
},
stylus: {
// for more options, see esbuild-stylus documentation}
},
tailwindcss: {
configPath: 'tailwind.config.js',
},
},
esbuild: {
loglevel: 'warning',
plugins: [],
},
});
devStarts the development server.
buildBuilds the application for production.
startStarts the production server.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
Flamme is a meta-framework that leverages the h3 HTTP server and React for both server-side rendering (SSR) and client-side rendering, providing a seamless development experience for modern web applications.
We found that flamme demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.