Whalebird è un client Mastodon, Pleroma e Misskey per applicazioni desktop Quando ricevi una notifica, questa viene notificata al tuo desktop. È possibile personalizzare il tema a piacere https://mastodon.it
Go to file
AkiraFukushima 9e228ede32
Initialize Next.js
2023-11-02 01:20:27 +09:00
main Initialize Next.js 2023-11-02 01:20:27 +09:00
renderer Initialize Next.js 2023-11-02 01:20:27 +09:00
resources/icons Initialize Next.js 2023-11-02 01:20:27 +09:00
.gitignore Initialize Next.js 2023-11-02 01:20:27 +09:00
.prettierrc Initialize Next.js 2023-11-02 01:20:27 +09:00
README.md Initialize Next.js 2023-11-02 01:20:27 +09:00
electron-builder.yml Initialize Next.js 2023-11-02 01:20:27 +09:00
package.json Initialize Next.js 2023-11-02 01:20:27 +09:00
tsconfig.json Initialize Next.js 2023-11-02 01:20:27 +09:00
yarn.lock Initialize Next.js 2023-11-02 01:20:27 +09:00

README.md

Usage

Create an App

# with npx
$ npx create-nextron-app my-app --example with-tailwindcss

# with yarn
$ yarn create nextron-app my-app --example with-tailwindcss

# with pnpm
$ pnpm dlx create-nextron-app my-app --example with-tailwindcss

Install Dependencies

$ cd my-app

# using yarn or npm
$ yarn (or `npm install`)

# using pnpm
$ pnpm install --shamefully-hoist

Use it

# development mode
$ yarn dev (or `npm run dev` or `pnpm run dev`)

# production build
$ yarn build (or `npm run build` or `pnpm run build`)