@vulkano/core
v1.15.6
Published
A MVC framework using Express 4
Readme
Vulkano
Vulkano is a small, simple, and fast framework for creating web applications using NodeJS. Inspired by KumbiaPHP.
Backers
Thank you to all our backers! 🙏
Buy me a coffe
Install
System
- Unix
- Node.js v20+
Packages
$ npm install @vulkano/coreYour App Structure
public/- HTTP Public foldervulkano/- Vulkano App (config, controllers, models, views)app.js- Server entry point
Your Server entry point
/**
* app.js
*
* To start the server, run: node app.js .
*
* For example:
* => npm run start
* => node app.js
*/
const vulkano = require('@vulkano/core');
vulkano(); Your Vulkano App Folder
vulkano/- Vulkano Appconfig- Your config filesenv- Folder for custom environment settingsexpress- Folder to customize the server (cookies, jwt, helmet, cors and settings)locales- i18n folderviews- Folder to customize filters and helpers to Nunjukcs
controllers- Your controllersmodels- Your modelsservices- Your services or libs
Your Vulkano Public Folder
public/- Public Pathcss- Stylesfonts- Fontsimg- Imagesjs- Javascriptfiles- Files uploaded
