A Management System for Managing Local markdown Files
local-cms
provides an initialization guide. You can choose the following ways to use the initialization guide:
You can run the initialization guide directly through npx
.
npx @huyikai/local-cms init
Install local-cms
globally, then run the initialization guide through the cms
command.
npm i @huyikai/local-cms -g
cms init
Install local-cms
into the project's development dependencies.
npm i @huyikai/local-cms -D
Then modify the package.json
file, add the cms
command.
{
"scripts": {
"cms": "node node_modules/@huyikai/local-cms/cms.js docs"
}
}