Delivering seamless content experiences across all channels β natively multilingual, any content, any channel.
| Repository | Description |
|---|---|
| nodify | Core Nodify Headless CMS project |
| nodify-clients | Official clients for Java, Python, and Node.js |
| nodify-templates | Ready-to-use templates for Nodify Studio |
| nodify-plugins | Extensible plugins for Nodify |
| nodify-php-client | PHP client for Nodify API |
You can explore a live demo of Nodify Headless CMS here:
π Nodify Demo
Credentials:
- Username:
admin - Password:
Admin13579++
Availability:
The demo server is accessible daily from 10:00 AM to 12:00 AM (UTC+1).
β οΈ This is a shared demo environment. Data may be reset at any time.
- π Documentation
- π¨ Templates Gallery
- π Plugins Marketplace
- π» Client Libraries
- π PHP Client
| Feature | Description |
|---|---|
| π Native Multilingual | Any content, any language, any channel |
| π¦ Official SDKs | Python, PHP, Java/Kotlin, Node.js |
| π Extensible | Plugins, webhooks, and custom APIs |
| π³ Docker-ready | One-command deployment |
| π¨ Ready Templates | Tech Forum, News, E-commerce, Stories |
- Separates the front-end (presentation layer) from the back-end (content management)
- Delivers content through APIs
- Highly customizable and adaptable
- Multilingual: Create and manage content in multiple languages.
- Multichannel: Deliver content to any device or platform.
- Highly customizable: Tailor the CMS to your specific needs.
- Scalable: Easily handle growing content volumes.
- Developer-friendly: Robust APIs and integrations.
- Websites
- Mobile apps
- IoT devices
- Social media
- Voice assistants
- Customizable content models: Define your own content structures.
- Flexible APIs: Integrate with your existing tech stack.
- Extensible with plugins: Add new features as needed.
- Translate content easily: Manage multiple language versions.
- Regionalize content: Target specific audiences.
- Handle complex multilingual requirements: Support various writing systems and dialects.
- Robust APIs: RESTful APIs for seamless integration.
- Webhooks: Trigger actions based on events.
- Version control: Track changes and collaborate effectively.
Nodify comes with pre-built templates to accelerate your development:
- Tech Forum Template - Complete developer community forum
- Tiny Tales Stories Template - AI-powered children's stories generator
- News Template - Modern news publishing platform
- E-commerce Template - Product catalog and shopping experience
Explore all templates in the nodify-templates repository.
Enhance your Nodify experience with official plugins:
- SEO Optimizer - Automatic meta tags and sitemap generation
- Image Optimizer - On-the-fly image resizing and optimization
- Webhook Manager - Advanced webhook configuration and monitoring
- Analytics Dashboard - Built-in content performance analytics
Browse all plugins in the nodify-plugins repository.
Integrate Nodify with your tech stack using official clients:
| Language | Repository |
|---|---|
| Java | nodify-clients/java |
| Python | nodify-clients/python |
| Node.js | nodify-clients/nodejs |
| PHP | nodify-php-client |
Clone the repository and run Nodify with all dependencies (MongoDB and Redis included):
git clone https://github.com/AZIRARM/nodify.git
cd nodify
docker compose up -dNodify will be available at:
- Nodify Studio: http://localhost:7821
- Nodify API: http://localhost:7805
- Nodify Core: http://localhost:7804
Create a docker-compose.yml file:
services:
mongodb:
image: mongo:latest
container_name: nodify-mongodb
volumes:
- mongodb_data:/data/db
ports:
- "27017:27017"
restart: unless-stopped
redis:
image: redis:latest
container_name: nodify-redis
volumes:
- redis_data:/data
ports:
- "6379:6379"
restart: unless-stopped
nodify-core:
image: azirar/nodify-core:latest
container_name: nodify-core
environment:
MONGO_URL: "mongodb://mongodb:27017/nodify"
ADMIN_PWD: Admin13579++
API_URL: "http://nodify-api:1080"
TZ: "${TZ:-Europe/Paris}"
REDIS_URL: "redis://redis:6379"
JAVA_OPTS: "-Xmx768m -Xms384m"
ports:
- "7804:8080"
depends_on:
- mongodb
- redis
restart: unless-stopped
nodify-api:
image: azirar/nodify-api:latest
container_name: nodify-api
environment:
MONGO_URL: "mongodb://mongodb:27017/nodify"
TZ: "${TZ:-Europe/Paris}"
REDIS_URL: "redis://redis:6379"
JAVA_OPTS: "-Xmx512m -Xms256m"
ports:
- "7805:1080"
depends_on:
- mongodb
- redis
restart: unless-stopped
nodify-studio:
image: azirar/nodify-studio:latest
container_name: nodify-studio
ports:
- "7821:80"
environment:
CORE_URL: "http://nodify-core:8080"
API_URL: "http://nodify-api:1080"
depends_on:
- nodify-core
- nodify-api
restart: unless-stopped
volumes:
mongodb_data:
redis_data:| Variable | Description | Default |
|---|---|---|
MONGO_URL |
MongoDB connection string | mongodb://mongodb:27017/nodify |
REDIS_URL |
Redis connection URL | redis://redis:6379 |
ADMIN_PWD |
Admin password | Admin13579++ |
API_URL |
Public API URL | http://nodify-api:1080 |
CORE_URL |
Core service URL | http://nodify-core:8080 |
JAVA_OPTS |
JVM options for Core and API | See above |
We welcome contributions! Please check our contribution guidelines before submitting pull requests.
Nodify is licensed under the Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0).
This project is licensed under the Creative Commons BY-NC 4.0 license.
You are free to:
- Share β Copy and redistribute the software in any medium or format.
- Adapt β Remix, transform, and build upon the software.
But under the following conditions:
- No Commercial Use β You may not use this software for commercial purposes.
- Attribution β You must give appropriate credit, provide a link to the license, and indicate if changes were made.
See the full license here: https://creativecommons.org/licenses/by-nc/4.0/
- π§ Email: support@azirar.ovh
- π¬ Issues: GitHub Issues
- π Documentation: Wiki
Made with β€οΈ by the Nodify Community






