# What do you understand by Scaffolding in Express.js?

Scaffolding is using the application generator tool, express-generator, to quickly create an application skeleton. You can run the application generator with the npx command 

```
$ npx express-generator
```

Source:

Express Application Generator. expressjs.com/en/starter/generator.html.
