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: site/docs/core/development.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ And then we may start app by `npm run dev`.
35
35
36
36
To start app in local, environment needs to be set as `env: local`. The configuration comes from the combination of both `config.local.js` and `config.default.js`.
37
37
38
-
> Note: The local development environment relies on 'egg-development' module, enabled by default, and closed other environment, Configuration reference [config/config.default.js](https://github.com/eggjs/egg-development/blob/master/config/config.default.js)
38
+
> Note: The local development environment relies on '@eggjs/development' module, enabled by default, and closed other environment, Configuration reference [config/config.default.ts](https://github.com/eggjs/development/blob/master/src/config/config.default.ts)
Copy file name to clipboardexpand all lines: site/docs/intro/quickstart.md
+19-20
Original file line number
Diff line number
Diff line change
@@ -17,16 +17,16 @@ To begin with, let's quickly initialize the project by using a scaffold,
17
17
which will quickly generate some of the major pieces of the application (`npm >=6.1.0`).
18
18
19
19
```bash
20
-
$ mkdir egg-example &&cd egg-example
21
-
$ npm init egg --type=simple
22
-
$ npm i
20
+
mkdir egg-example &&cd egg-example
21
+
npm init egg --type=simple
22
+
npm i
23
23
```
24
24
25
25
Then get up and run by using the following commands.
26
26
27
27
```bash
28
-
$ npm run dev
29
-
$ open http://localhost:7001
28
+
npm run dev
29
+
open http://localhost:7001
30
30
```
31
31
32
32
## Step by Step
@@ -44,11 +44,11 @@ However, in this section, instead of using scaffolds we will build a project cal
44
44
First let's create the project directory and initialize its structure.
45
45
46
46
```bash
47
-
$ mkdir egg-example
48
-
$ cd egg-example
49
-
$ npm init
50
-
$ npm i egg --save
51
-
$ npm i egg-bin --save-dev
47
+
mkdir egg-example
48
+
cd egg-example
49
+
npm init
50
+
npm i egg --save
51
+
npm i egg-bin --save-dev
52
52
```
53
53
54
54
Then add `npm scripts` to `package.json`.
@@ -116,8 +116,8 @@ For more information about directory structure, see [Directory Structure](../bas
116
116
Now you can start up the Web Server and see your application in action.
117
117
118
118
```bash
119
-
$ npm run dev
120
-
$ open http://localhost:7001
119
+
npm run dev
120
+
open http://localhost:7001
121
121
```
122
122
123
123
> Note:
@@ -159,7 +159,7 @@ In this example, we will use [Nunjucks].
159
159
First install the corresponding plugin [egg-view-nunjucks].
160
160
161
161
```bash
162
-
$ npm i egg-view-nunjucks --save
162
+
npm i egg-view-nunjucks --save
163
163
```
164
164
165
165
And enable it.
@@ -236,10 +236,10 @@ module.exports = (app) => {
236
236
};
237
237
```
238
238
239
-
Open a browser window and navigate to http://localhost:7001/news.
239
+
Open a browser window and navigate to <http://localhost:7001/news>.
240
240
You should be able to see the rendered page.
241
241
242
-
**Tip:In development, Egg enables the [development][egg-development] plugin by default, which reloads your worker process when changes are made to your back-end code.**
242
+
**Tip:In development, Egg enables the [development][@eggjs/development] plugin by default, which reloads your worker process when changes are made to your back-end code.**
243
243
244
244
### Create a Service
245
245
@@ -331,7 +331,7 @@ For more information, cf. [Extensions](../basics/extend.md).
331
331
In the case of view, we can just write a helper as an extension.
332
332
333
333
```bash
334
-
$ npm i moment --save
334
+
npm i moment --save
335
335
```
336
336
337
337
```js
@@ -452,13 +452,13 @@ Then add `npm scripts`.
452
452
Also install dependencies.
453
453
454
454
```bash
455
-
$ npm i egg-mock --save-dev
455
+
npm i egg-mock --save-dev
456
456
```
457
457
458
458
Run it.
459
459
460
460
```bash
461
-
$ npm test
461
+
npm test
462
462
```
463
463
464
464
That is all of it, for more detail, see [Unit Testing](../core/unittest.md).
@@ -477,7 +477,6 @@ Where to go from here? read our documentation to better understand the framework
0 commit comments