npm run start:prodPUBLIC_FOLDER./distmanifest.ymlnpx add-manifest❯ npm run manifest
> my-manifest-project@0.1.0 manifest
> node node_modules/manifest/scripts/watch/watch.js
[nodemon] 3.1.10
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): manifest/*.yml manifest/handlers/*.js
[nodemon] watching extensions: yml,js
[nodemon] starting `node node_modules/manifest/dist/manifest/src/main.js .`
Manifest backend successfully started!
🖥️ Admin Panel: http://localhost:1111
📚 API Doc: http://localhost:1111/api[Nest] 13196 - 06/19/2025, 6:36:17 PM ERROR [ExceptionsHandler] (0 , path_to_regexp_1.match) is not a function
TypeError: (0 , path_to_regexp_1.match) is not a function
at EndpointService.matchRoutePath (C:\Programming\Source\Web\test\node_modules\manifest\dist\manifest\src\endpoint\endpoint.service.js:37:56)
at MatchEndpointMiddleware.use (C:\Programming\Source\Web\test\node_modules\manifest\dist\manifest\src\endpoint\middlewares\match-endpoint.middleware.js:23:59)
at C:\Programming\Source\Web\test\node_modules\@nestjs\core\router\router-proxy.js:9:23
at middlewareFunction (C:\Programming\Source\Web\test\node_modules\@nestjs\core\middleware\middleware-module.js:166:28)
at Layer.handle [as handle_request] (C:\Programming\Source\Web\test\node_modules\express\lib\router\layer.js:95:5)
at next (C:\Programming\Source\Web\test\node_modules\express\lib\router\route.js:149:13)
at Route.dispatch (C:\Programming\Source\Web\test\node_modules\express\lib\router\route.js:119:3)
at Layer.handle [as handle_request] (C:\Programming\Source\Web\test\node_modules\express\lib\router\layer.js:95:5)
at C:\Programming\Source\Web\test\node_modules\express\lib\router\index.js:284:15
at param (C:\Programming\Source\Web\test\node_modules\express\lib\router\index.js:365:14)endpoints:
test:
path: /test
handler: test
method: GETmodule.exports = async (req, res) => {
res.json({ message: 'Hello world from my new endpoint!' })
}PS C:\Programming\Source\Web\test> node -v
v24.2.0
PS C:\Programming\Source\Web\test> npm -v
11.4.2### manifest.yml
name: Example App
entities:
User:
properties:
- name
# ...
extend:
- entities/Language.yml
### entities/Language.yml
Language:
properties: #...name: My pet app
storage:
provider: vercel-blob
config:
token: ${BLOB_READ_WRITE_TOKEN}[{
"target": {
"email": "me@test.com",
"password": "<hashed password>"
},
"children": [],
"constraints": {
"unknownValue": "an unknown value was passed to the validate function"
}
}]npx create-react-app@latest test
npx add-manifest