![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
create-flamme-app
Advanced tools
A CLI tool to bootstrap a new Flamme project, leveraging the h3 HTTP server and React for both server-side and client-side rendering.
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
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/
│ │ └── index.tsx
│ ├── server/
│ │ ├── api/
│ │ └── index.ts
│ └── index.tsx
├── package.json
└── README.md
Flamme can be configured via a flamme.config.ts
file in the root of your project. Here is an example configuration:
module.exports = {
root: '/',
base: './',
serverBaseUrl: '/api',
clientDir: 'src/client',
serverDir: 'src/server',
buildDir: 'dist',
publicDir: 'public',
cacheDir: '.flamme',
devServerPort: 3000,
hmrServerPort: 3001,
envPublicPrefix: 'PUBLIC_',
css: {
cssModules: {
force: true,
emitDeclarationFile: false,
localsConvention: 'camelCaseOnly',
namedExports: true,
inject: false,
},
sass: {
filter: /\.scss$/,
type: 'css',
},
less: {},
stylus: {},
tailwindcss: {},
},
esbuild: {
loglevel: 'warning',
plugins: [],
},
};
dev
Starts the development server.
build
Builds the application for production.
start
Starts the production server.
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
A CLI tool to bootstrap a new Flamme project, leveraging the h3 HTTP server and React for both server-side and client-side rendering.
The npm package create-flamme-app receives a total of 7 weekly downloads. As such, create-flamme-app popularity was classified as not popular.
We found that create-flamme-app demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.