Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bufferhead-code/nextjs-use-php
Use PHP code right within your React / Next.js App. With "use php";
https://github.com/bufferhead-code/nextjs-use-php
nextjs nodejs php react reactjs
Last synced: about 3 hours ago
JSON representation
Use PHP code right within your React / Next.js App. With "use php";
- Host: GitHub
- URL: https://github.com/bufferhead-code/nextjs-use-php
- Owner: bufferhead-code
- License: mit
- Created: 2023-10-29T19:22:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-03T02:52:05.000Z (8 months ago)
- Last Synced: 2024-08-01T20:49:53.137Z (3 months ago)
- Topics: nextjs, nodejs, php, react, reactjs
- Language: TypeScript
- Homepage:
- Size: 90.8 KB
- Stars: 609
- Watchers: 6
- Forks: 16
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Next.js `use php`
> [!NOTE]
> Check out **solidtime - The modern Open Source Time-Tracker** at [solidtime.io](https://www.solidtime.io)Use PHP right inside of your Next.js project.
Just like `use server` (not really).**You can watch how i made it [here](http://www.youtube.com/watch?v=EGOkjmyfL6E)**
[![Youtube Video about how this project was made](http://img.youtube.com/vi/EGOkjmyfL6E/0.jpg)](http://www.youtube.com/watch?v=EGOkjmyfL6E "Write PHP in Next.js/React Components")
You can use it in React Server Components just like this:
```javascript
return (
{
'use php'
(new PDO('mysql:host=localhost:3306;dbname=public', 'root', 'root'))
->prepare("INSERT INTO Bookmarks (slug) VALUES (?)")
->execute(array('new'));
}}>
Insert Bookmark
)
```And if you want to it can even work with React Client Components
```javascript
// actions.js
'use server'export async function phpHelloWorld() {
'use php'
print "Hello from PHP";
}
``````javascript
// page.tsx
import {phpHelloWorld} from "../actions";
```Yes this actually works. Trust me I wish it wouldn't too.
## Build
You can build the implementation by
```bash
npm run build
npm run start
```Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
If you want to try out the Database Example, you can use the docker-compose file provided in the repository.
after `docker-compose up -d` you need to create the database and table you want to insert into manually.## Roadmap (Things that should be fixed but realistically it will never happen)
- [ ] There is a probably a way to fix that nasty preprocess step with [SWC Plugins]( https://swc.rs/docs/plugin/ecmascript/getting-started) which are still in Beta with Next.js and also I think they will switch builder anyways soon so what's the point really? But hey if anyone wants to do it feel free.
- [ ] I guess there is some hacky way to make props binding possible.## Credits
Check out the original implementations by elnardu for C and Rust:
* https://github.com/elnardu/react-use-c
* https://github.com/elnardu/react-use-rust## Disclaimer
*I hope I don't have to say this but: If you even in the slightest consider to use this in any application at all you are an absolute madperson and and should be locked out of the internet for the rest of your life, I hope you find some other fun activity, maybe gardening or woodwork.*
## Self-Promo
If you enjoyed this project and want to see more silly web development projects, you can follow me on [Twitter](https://twitter.com/bufferhead_), [Bluesky](https://bsky.app/profile/bufferhead.bsky.social) and [Youtube](https://www.youtube.com/@bufferhead_).