sitegeist / stencil-roller
Json rendering for headless Neos
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 0
Open Issues: 0
Type:neos-package
Requires
- neos/fusion: ^4.3 || dev-master
This package is auto-updated.
Last update: 2024-10-14 20:51:41 UTC
README
Json API for headless Neos
This is WIP, everything in here may change or turn out to be a bad idea at all.
This package will expose the content of each document as json. You can access the document data by using .stencil.roller.json
suffix instead of .html
.
The returned json:
{
document: {
identifier
nodeType
properties: {
// all properties of the node
}
content: {
// all children of type Content and ContentCollection recursively
}
}
children: [{identifier, uri}, ..] // all children of type Document
}
Authors & Sponsors
- Wilhelm Behncke - behncke@sitegeist.de
- Martin Ficzel - ficzel@sitegeist.de
The development and the public-releases of this package is generously sponsored by our employer https://www.sitegeist.de.
Installation
Sitegeist.Stencil.Roller is available via packagist. Just run composer require sitegeist/stencil-roller
to install it. We use semantic-versioning so every breaking change will increase the major-version number.
Contribution
We will gladly accept contributions. Please send us pull requests.