You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/content/docs/ext-dev/getting-started.md
+47-75
Original file line number
Diff line number
Diff line change
@@ -28,100 +28,78 @@ You don't need to be an expert (or have worked) in the above subjects, but it ma
28
28
29
29
Reading how other extensions work can be a huge resource, so we encourage you to reference [the moonlight core extensions](https://github.com/moonlight-mod/moonlight/tree/main/packages/core-extensions/src) and [the extensions on the official repository](https://github.com/moonlight-mod/extensions/tree/main/exts) if you're stuck. Just remember to respect the licensing of the extension!
30
30
31
-
## Setting up the sample extension
31
+
## Create your extension
32
32
33
-
A sample extension is provided to start development quickly:
33
+
The `create-extension` CLI tool can help you scaffold a new moonlight extension repository:
34
34
35
+
- Configured like a monorepo, so multiple extensions can live in the same Git repository
35
36
- Pre-configured build system (esbuild)
37
+
- Pre-configured formatter and linter (Prettier and ESLint)
36
38
- TypeScript support
37
-
- Example usage of [Node.js code](/ext-dev/cookbook#extension-entrypoints)
38
-
- Example patch & Webpack modules
39
+
- Example usage of [patching](/ext-dev/webpack#patching), [Webpack modules](/ext-dev/webpack#webpack-module-insertion), and [Node.js code](/ext-dev/cookbook#extension-entrypoints)
39
40
40
-
It is configured like a monorepo, so multiple extensions can live in the same Git repository. This is not required.
41
+
You'll need to decide on a few things first:
41
42
42
-
You can view it [here](https://github.com/moonlight-mod/sample-extension).
43
-
44
-
### Set up the repository
43
+
- Pick a name for your extension. This will be displayed to the user in Moonbase. We suggest a short but informational one.
44
+
- Avoid using gimmick names where possible ~~[except if you can't resist it](https://github.com/moonlight-mod/moonlight/tree/main/packages/core-extensions/src/spacepack)~~.
45
+
- Treat it as a proper noun ("Native Fixes" instead of "Native fixes").
46
+
- Pick an ID for your extension. We suggest using the name of your extension in `camelCase`:
47
+
- Context Menu -> `contextMenu`
48
+
- Moonbase -> `moonbase`
49
+
- No Hide Token -> `noHideToken`
45
50
46
-
On GitHub, click "Use this template" on the sample extension repository to create a new repository.
51
+
:::caution
52
+
**Extension IDs are constant and cannot change!** Many things depend on the ID as a source of truth (extension loading, installing & updating, the official repository, etc).
47
53
48
-
:::note
49
-
If you do not have a GitHub account, or do not want to directly use the template, you can also download the sample extension repository as a .zip file.
54
+
You can change the user-facing name of the extension, but never modify the ID.
50
55
:::
51
56
52
-
:::caution
53
-
**Do not fork the repository!** GitHub will suggest you to make invalid pull requests, and it will retain all Git history of the sample extension. If you are cloning the repository manually, wipe the Git history before pushing to your own repository.
54
-
:::
57
+
Now, run this command and follow the instructions:
55
58
56
-
In the repository settings, make sure GitHub Actions is enabled for this repository, and that the GitHub Pages source is set to GitHub Actions:
- GitHub Pages: "Code and automation" > "Pages" > "Build and deployment" > "Source"
63
+
After the project is created, change the `meta` field in `manifest.json`:
60
64
61
-
:::note
62
-
Don't worry if you get an email about a "failed run". This is likely because these settings haven't been configured yet. Once they're set, this shouldn't happen again.
63
-
:::
65
+
- Change `name` to your user-facing extension name.
66
+
- Change `tagline` to a short explanation of your extension.
67
+
- Change or delete `description` to a longer explanation of your extension. If you have any important notes about the extension's functionality, add them here.
68
+
- Change `authors` to contain your username.
69
+
- Change `source` to the URL of your Git repository.
64
70
65
-
Clone the repository with your favorite Git client.
71
+
Now is a good time to take a look around the rest of the files - most of them are commented. We strongly suggest adding a short README to your project, as well as a LICENSE.
66
72
67
-
### Clean up the sample extension
73
+
##Build and run the extension
68
74
69
-
First, remove the files that aren't needed:
75
+
Run `pnpm run build` to build the extension. If you get an error, you might have forgotten to install the dependencies (`pnpm i`). Use the "Extension search paths" setting in Moonbase (or set `devSearchPaths` in your moonlight config) to add the `dist` folder next to your code. If you don't have a `dist` folder, you need to build the extension first.
70
76
71
-
- Delete `README.md`, and optionally replace it with your own.
72
-
- Modify `LICENSE` if you would like to use a different license. moonlight is licensed under the [GNU Lesser General Public License](https://www.gnu.org/licenses/lgpl-3.0.html) (`LGPL-3.0-or-later`).
77
+
:::note
78
+
Do not add the directory with your code. moonlight will only be able to load the extensions from the `dist` folder in your repository.
79
+
:::
73
80
74
-
Next, decide what you'll rename everything to:
81
+
After restarting your client, the extension will be available in Moonbase and you can enable it. We suggest using watch mode (`pnpm run dev`) when developing your extension to build it automatically.
75
82
76
-
- Pick a name for your extension. This will be displayed to the user in Moonbase. We suggest a short but informational one.
77
-
- Avoid using gimmick names where possible ~~[except if you can't resist it](https://github.com/moonlight-mod/moonlight/tree/main/packages/core-extensions/src/spacepack)~~.
78
-
- Treat it as a proper noun ("Native Fixes" instead of "Native fixes").
79
-
- Pick an ID for your extension. We suggest using the name of your extension in `camelCase`:
80
-
- Context Menu -> `contextMenu`
81
-
- Moonbase -> `moonbase`
82
-
- No Hide Token -> `noHideToken`
83
+
:::note
84
+
Watch mode will need to be restarted if you edit the extension manifest, add/remove an entrypoint, or add/remove a Webpack module. If you delete an extension, entrypoint, or Webpack module, you should run `pnpm run clean` to clean up the remaining build output.
85
+
:::
83
86
84
-
:::caution
85
-
**Extension IDs are constant and cannot change!** Many things depend on the ID as a source of truth (extension loading, installing & updating, the official repository, etc).
87
+
## Publish to GitHub
86
88
87
-
You can change the user-facing name of the extension, but never modify the ID.
88
-
:::
89
+
We suggest publishing to GitHub to take use of the provided GitHub workflow. You can choose any Git host you like, though!
89
90
90
-
Now, change the branding of the extension:
91
-
92
-
- Change the name in `package.json`.
93
-
- If your repository will just have one extension in it, set it to the extension ID.
94
-
- If your repository will hold multiple extensions, we suggest picking a generic name like `moonlight-extensions`.
95
-
- Rename the `sampleExtension` folder in `src` to your extension ID.
96
-
- Change the `meta` field in `manifest.json`:
97
-
- Change `name` to your user-facing extension name.
98
-
- Change `tagline` to a short explanation of your extension.
99
-
- Change or delete `description` to a longer explanation of your extension. If you have any important notes about the extension's functionality, add them here.
100
-
- Change `authors` to contain your username.
101
-
- Change `source` to the URL of your Git repository.
102
-
- Replace all uses of `sampleExtension` with your extension ID in the following files:
103
-
-`manifest.json`
104
-
-`index.tsx`
105
-
-`node.ts`
106
-
-`webpackModules/entrypoint.ts`
107
-
-`webpackModules/someLibrary.ts`
108
-
-`env.d.ts` (located at the root folder)
109
-
110
-
### Build and run the extension
111
-
112
-
- Install dependencies: `pnpm i`
113
-
- Build the extensions: `pnpm run build`
114
-
- Build in watch mode, so your extension is built when you make changes: `pnpm run dev`
115
-
- This command will need to be restarted if you edit the extension manifest, add/remove an entrypoint, or add/remove a Webpack module.
116
-
- If you delete an extension, entrypoint, or Webpack module, you should run `pnpm run clean` to clean up the remaining build output.
117
-
118
-
Use the "Extension search paths" setting in Moonbase (or set `devSearchPaths` in your moonlight config) to add the `dist` folder next to your code. If you don't have a `dist` folder, you need to build the extension first.
91
+
In the repository settings, make sure GitHub Actions is enabled for your repository, and that the GitHub Pages source is set to GitHub Actions:
- GitHub Pages: "Code and automation" > "Pages" > "Build and deployment" > "Source"
119
95
120
96
:::note
121
-
Do not add the directory with your code. moonlight will only be able to load the extensions from the `dist` folder in your repository.
97
+
Don't worry if you get an email about a "failed run". This is likely because these settings haven't been configured yet. Once they're set, this shouldn't happen again.
122
98
:::
123
99
124
-
After restarting your client, the extension will load.
100
+
Your repository will be published to `https://<username>.github.io/<repository>/repo.json`. Every time a commit is made to the main branch, the extensions will be built on GitHub Actions and published automatically.
101
+
102
+
It is suggested to only use this if you do not plan to submit to the [official repository](/ext-dev/official-repository). You can also delete the `.github/workflows/deploy.yml` file if you do not want this (or if you aren't using GitHub).
125
103
126
104
## What's next?
127
105
@@ -131,12 +109,6 @@ Congrats on making it this far! There's a lot more to learn about how moonlight
131
109
-[Read the cookbook](/ext-dev/cookbook) for common patterns you may want to use.
132
110
-[Set up DevTools](/ext-dev/devtools) to make reverse engineering Discord easier.
133
111
-[Read common pitfalls](/ext-dev/pitfalls) so you know to avoid them.
134
-
- When your extension is ready, [submit to the official repository](/ext-dev/official-repository) or [distribute the extension on a custom repository](#publishing-to-github-pages).
112
+
- When your extension is ready, [submit to the official repository](/ext-dev/official-repository) or [distribute the extension on a custom repository](#publish-to-github).
135
113
136
114
If you need any help, don't be afraid to [ask in our Discord server](https://discord.gg/FdZBTFCP6F).
137
-
138
-
## Publishing to GitHub Pages
139
-
140
-
Your repository will be published to `https://<username>.github.io/<repository>/repo.json`. Every time a commit is made to the main branch, the extensions will be built on GitHub Actions and published automatically.
141
-
142
-
It is suggested to only use this if you do not plan to submit to the official repository. You can also delete the `.github/workflows/deploy.yml` file if you do not want this (or if you aren't using GitHub).
0 commit comments