mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
This slightly nicer syntax was introduced back in "npm@6.1.0". "node@12.20.0", which is the minimum version we require, ships with "npm@6.14.8". "npm@6" versions below "6.1.0" were never actually shipped with any node version, so it should be very safe to use this syntax.
16 lines
310 B
Markdown
16 lines
310 B
Markdown
# create-directus-project
|
|
|
|
A small installer util that will create a directory, add boilerplate folders, and install Directus through npm.
|
|
|
|
## Installation
|
|
|
|
This package is meant to be used through `npx` or `yarn`:
|
|
|
|
```
|
|
npm init directus-project my-project
|
|
```
|
|
|
|
```
|
|
yarn create directus-project my-project
|
|
```
|