![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
muchas-framework
Advanced tools
WIP DOCUMENTATION
Muchas is an opinionated microservice nodejs framework. We use a set of other frameworks to build a rich ecoystem with a standard way of building applications.
npm i -s muchas-framework
We are explain using the default folder strucuture. The MuchasFr
import MuchasFramework from 'muchas-framework';
(async () => await MuchasFramework.init())();
We can use two files to define our environment variables, we use the muchas.yml
to help us organize our config object and a .env file for dynamic configuration values.
All the ${VARIABLE} will be replaced buy the environment variables
env: ${NODE_ENV} # Enviroment (development, production)
name: ${PROJECT_NAME} # Project name
debug: # Debug options
port: ${DEBUG_PORT} # NodeJS debug port
web: # Web server
port: ${SERVER_PORT} # Web server port
headers: # Web server default response headers
Access-Control-Allow-Origin: '*'
Access-Control-Allow-Methods: '*'
Access-Control-Allow-Headers: '*'
health: # Health web server
port: 9000 # Health web server port
apm: # Application performance management
host: ${APM_HOST} # Host
logLevel: ${APM_LEVEL} # Level
sample: 0.2 # Sample rate
logger: # Logger
elasticsearch: # Elasticsearch logger
host: ${LOGGER_ELASTIC_HOST} # Elastic host
level: ${LOGGER_ELASTIC_LEVEL} # Log level
database: # Database
uri: ${DATABASE_URI} # Database URI
model: # Models
path: ${MODELS_PATH} # Model base path
broker: # Broker
host: ${BROKER_HOST} # Broker Host
components: # Components
path: ${COMPONENTS_PATH} # Components base path
NODE_ENV=development
DATABASE_URI=mongodb://mongo/muchas
SERVER_PORT=6028
BROKER_HOST=rabbit
COMPONENTS_PATH=dist/tests/integration/components
MODELS_PATH=dist/tests/integration/models
LOGGER_ELASTIC_HOST=http://elastic:9200
LOGGER_ELASTIC_LEVEL=error
PROJECT_NAME=muchas
APM_HOST=http://elastic-apm:8200
APM_LEVEL=error
The web application uses express under the hood
We support amqp protocol for our message broker and we encourage to use it with RabbitMQ
Level | Priority |
---|---|
error | 0 |
warn | 1 |
info | 2 |
verbose | 3 |
debug | 4 |
silly | 5 |
FAQs
Muchas Framework - NodeJS Microservice Framework
We found that muchas-framework demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.