Socket
Book a DemoInstallSign in
Socket

@fedimint/create-fedimint-app

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fedimint/create-fedimint-app

## Scaffolding Your First Fedimint App

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
1
Maintainers
0
Weekly downloads
 
Created
Source

create-fedimint-app

Scaffolding Your First Fedimint App

Compatibility Note: Requires Node.js version 18+, 20+

With NPM:

$ npm create fedimint-app@latest

With Yarn:

$ yarn create fedimint-app

With PNPM:

$ pnpm create fedimint-app

Then follow the prompts!

You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a Fedimint + React project, run:

# npm 7+, extra double-dash is needed:
npm create fedimint-app@latest my-fedimint-app -- --template vite-react-ts

# yarn
yarn create fedimint-app my-fedimint-app --template vite-react-ts

# pnpm
pnpm create fedimint-app my-fedimint-app --template vite-react-ts

Currently supported template presets include:

  • vite-react-ts - React + TypeScript template with Fedimint integration

You can use . for the project name to scaffold in the current directory.

Getting Started

After creating your project, install dependencies and start the dev server:

cd my-fedimint-app
npm install
npm run dev

This will start a development server with hot module replacement. The template includes:

  • React + TypeScript setup
  • Fedimint wallet integration
  • Basic styling with CSS
  • Vite for fast development and building

FAQs

Package last updated on 17 Dec 2024

Did you know?

Socket

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.

Install

Related posts