alpha
Login
or
Join now
danielroe.dev
/
dev-mode.dev
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/danielroe/dev-mode.dev. A site to toggle your developer mode on and off with ONE CLICK!
dev-mode.dev
dev-mode
developer
dx
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
docs: add basic readme
author
Daniel Roe
date
1 year ago
(Apr 19, 2025, 10:13 PM +0100)
commit
c80f7b3d
c80f7b3df35182198d6cf71c551c433bfd43aa69
parent
0ef23c14
0ef23c14cd042e7972d20469d249a75b366e4941
+38
-56
1 changed file
Expand all
Collapse all
Unified
Split
README.md
+38
-56
README.md
View file
Reviewed
···
1
1
-
# Nuxt 3 Minimal Starter
1
1
+
# dev-mode.dev ™©®
2
2
3
3
-
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
3
3
+
<p align="center">
4
4
+
<i>A site to toggle your developer mode on and off with ONE CLICK!</i>
5
5
+
</p>
4
6
5
5
-
## Setup
7
7
+
<p align="center">
8
8
+
<a href="https://dev-mode.dev" target="_blank">
9
9
+
<img width="600" alt="Screenshot of dev-mode.dev" src="https://github.com/user-attachments/assets/4c9bf279-a5d2-49a7-a9a1-172c74782ddf">
10
10
+
</a>
11
11
+
</p>
6
12
7
7
-
Make sure to install the dependencies:
13
13
+
<p align="center">
14
14
+
<strong><a href="https://dev-mode.dev">👉 Visit dev-mode.dev</a></strong>
15
15
+
</p>
8
16
9
9
-
```bash
10
10
-
# npm
11
11
-
npm install
17
17
+
## Features
12
18
13
13
-
# pnpm
14
14
-
pnpm install
19
19
+
- ⚡️ blazing fast
20
20
+
- 📦 built from scratch for devs
21
21
+
- 🎛️ offering full control of your environment
22
22
+
- 💰 VC funding welcome
15
23
16
16
-
# yarn
17
17
-
yarn install
18
18
-
19
19
-
# bun
20
20
-
bun install
21
21
-
```
22
22
-
23
23
-
## Development Server
24
24
+
## How It Works
24
25
25
25
-
Start the development server on `http://localhost:3000`:
26
26
-
27
27
-
```bash
28
28
-
# npm
29
29
-
npm run dev
30
30
-
31
31
-
# pnpm
32
32
-
pnpm run dev
33
33
-
34
34
-
# yarn
35
35
-
yarn dev
26
26
+
1. click the toggle to turn dev mode ON or OFF
27
27
+
2. ...
28
28
+
3. enjoy the magic of dev mode!
36
29
37
37
-
# bun
38
38
-
bun run dev
39
39
-
```
30
30
+
## The Technical Bits
40
31
41
41
-
## Production
32
32
+
- Built with [Nuxt](https://nuxt.com)
33
33
+
- Uses local storage (with a [Vueuse composable](https://github.com/vueuse/vueuse/)) to remember your dev mode preference
34
34
+
- Changes favicons based on your mode selection using [unhead](https://github.com/unjs/unhead)
42
35
43
43
-
Build the application for production:
36
36
+
## Setup
44
37
45
38
```bash
46
46
-
# npm
47
47
-
npm run build
39
39
+
# install dependencies
40
40
+
corepack enable
41
41
+
pnpm install
48
42
49
49
-
# pnpm
50
50
-
pnpm run build
43
43
+
# Start the _dev_ server
44
44
+
pnpm dev
51
45
52
52
-
# yarn
53
53
-
yarn build
46
46
+
# Build for production
47
47
+
pnpm build
54
48
55
55
-
# bun
56
56
-
bun run build
49
49
+
# Preview the production build
50
50
+
pnpm preview
57
51
```
58
52
59
59
-
Locally preview production build:
53
53
+
## License
60
54
61
61
-
```bash
62
62
-
# npm
63
63
-
npm run preview
55
55
+
Made with ❤️
64
56
65
65
-
# pnpm
66
66
-
pnpm run preview
67
67
-
68
68
-
# yarn
69
69
-
yarn preview
70
70
-
71
71
-
# bun
72
72
-
bun run preview
73
73
-
```
74
74
-
75
75
-
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
57
57
+
Published under the [MIT License](./LICENSE).