PHPackages                             escribiendocodigo/phalcon-react-project-skeleton - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. escribiendocodigo/phalcon-react-project-skeleton

ActiveProject[Framework](/categories/framework)

escribiendocodigo/phalcon-react-project-skeleton
================================================

Phalcon React project skeleton

v5.0.0(2y ago)110MITJavaScriptPHP &gt;=7.4

Since Oct 3Pushed 2y ago1 watchersCompare

[ Source](https://github.com/escribiendocodigo/phalcon-react-project-skeleton)[ Packagist](https://packagist.org/packages/escribiendocodigo/phalcon-react-project-skeleton)[ RSS](/packages/escribiendocodigo-phalcon-react-project-skeleton/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (3)Used By (0)

Phalcon React project skeleton
==============================

[](#phalcon-react-project-skeleton)

Skeleton application using [Phalcon framework](https://phalcon.io) and [Vite](https://vitejs.dev) + [React](https://react.dev).

Requirements
------------

[](#requirements)

- PHP &gt;= 7.4.1
- Phalcon &gt;= 5.0.0
- Node &gt;= 18.0.0

Structure
---------

[](#structure)

```
my-project/
  ¦
  ├-- backend/
  ¦
  └-- frontend/

```

### Backend

[](#backend)

[Phalcon micro application](https://github.com/escribiendocodigo/phalcon-micro-project-skeleton)that provides a RESTful API running port 8000

### Frontend

[](#frontend)

[Vite](https://vitejs.dev) + [React](https://react.dev) application running port 5173

#### Proxying to a backend

[](#proxying-to-a-backend)

 -&gt;

```
// vite.config.js

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";

const BACKEND_PORT = process.env.BACKEND_PORT || 8000;

export default defineConfig({
  plugins: [react()],
  server: {
    host: "0.0.0.0",
    proxy: {
      "/api": {
        target: `http://127.0.0.1:${BACKEND_PORT}`,
        // changeOrigin: true,
        rewrite: (path) => path.replace(/^\/api/, ""),
      },
    },
  },
});
```

Installing via Composer
-----------------------

[](#installing-via-composer)

```
composer create-project escribiendocodigo/phalcon-react-project-skeleton my-project
```

Once installed, you can test it out immediately using PHP's built-in web server:

```
cd my-project
```

Run backend

```
cd backend
composer serve
# OR use the composer alias:
composer serve-backend
```

Run frontend

```
cd frontend
npm run dev
# OR use the composer alias:
composer serve-frontend
```

Build frontend

```
cd frontend
npm run build
# OR use the composer alias:
composer build-frontend
```

Web server setup
----------------

[](#web-server-setup)

### Nginx

[](#nginx)

```
server {
    listen 80;
    server_name my-domain www.my-domain;

    index index.html index.php;

    access_log /var/log/nginx/my-domain.access.log;
    error_log /var/log/nginx/my-domain.error.log;

    location / {
        root /var/www/my-project/frontend/dist;

        try_files $uri $uri/ /index.html;
    }

    location /api {
        rewrite ^/api(.*)$ /index.php;
        set $request_url $1;
    }

    location ~ \.php$ {
        root /var/www/my-project/backend/public;

        include /etc/nginx/snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
        fastcgi_param REQUEST_URI $request_url;
    }

    location ~ /\.ht {
        deny all;
    }

}
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

950d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1bd283be4704020efb47c492f63c5cea924930cee7933fc262f5f5d18d0019a3?d=identicon)[escribiendocodigo](/maintainers/escribiendocodigo)

---

Top Contributors

[![escribiendocodigo](https://avatars.githubusercontent.com/u/1614184?v=4)](https://github.com/escribiendocodigo "escribiendocodigo (2 commits)")

---

Tags

phpSkeletonphalconreactproject

### Embed Badge

![Health badge](/badges/escribiendocodigo-phalcon-react-project-skeleton/health.svg)

```
[![Health](https://phpackages.com/badges/escribiendocodigo-phalcon-react-project-skeleton/health.svg)](https://phpackages.com/packages/escribiendocodigo-phalcon-react-project-skeleton)
```

###  Alternatives

[oleksandr-torosh/yona-cms

Yona CMS - open source content management system (CMS). Written in Phalcon PHP Framework (v 1.3.x). Has a convenient modular structure. Has simple configuration and architecture. Can be easily modified for any task with any loads.

3652.1k](/packages/oleksandr-torosh-yona-cms)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
