-
-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1be29b6
commit a62cc2b
Showing
11 changed files
with
136 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
# Introduction | ||
|
||
React-JUCE is a hybrid JavaScript/C++ framework that enables a [React.js](https://reactjs.org/) frontend for a [JUCE](http://juce.com/) application or plugin. It provides an embedded, ECMAScript-compliant JavaScript engine via [Duktape](http://duktape.org/), native hooks for rendering the React component tree via `juce::Component` instances, and a flexbox layout engine via [Yoga](https://yogalayout.com/). | ||
React-JUCE is a hybrid JavaScript/C++ framework that enables a | ||
[React.js](https://reactjs.org/) frontend for a [JUCE](http://juce.com/) | ||
application or plugin. | ||
|
||
For more information, see the introductory blog post here: [React-JUCE: A JUCE Rendering Backend for React.js](https://nickwritesablog.com/blueprint-a-juce-rendering-backend-for-react-js) | ||
For more information, see the introductory blog post here: | ||
[React-JUCE: A JUCE Rendering Backend for React.js](https://nickwritesablog.com/blueprint-a-juce-rendering-backend-for-react-js) | ||
|
||
## Examples | ||
|
||
React-JUCE is a young project, but already it provides the framework on which the entire user interface for [Creative Intent's Remnant](https://www.creativeintent.co/product/remnant) plugin is built. | ||
React-JUCE is a young project, but already it provides the framework on which | ||
the entire user interface for [Creative Intent's Remnant](https://www.creativeintent.co/product/remnant) plugin is built. | ||
|
||
![Creative Intent Remnant: Screenshot](_media/RemnantScreenShot.jpg) | ||
|
||
Besides that, you can check out the example code in the `examples/` directory. See the "Documentation" section | ||
below for building and running the demo plugin. If you have a project written with React-JUCE that you want to share, get in touch! I would | ||
love to showcase your work. | ||
Besides that, you can check out a selection of example plugins over at [react-juce-examples](https://github.com/JoshMarler/react-juce-examples) | ||
|
||
## Contributing | ||
If you have a project written with React-JUCE that you want to share, get in touch! We would love to showcase your work. | ||
|
||
Yes, please! I would be very happy to welcome your involvement. Take a look at the [open issues](https://github.com/nick-thompson/react-juce/issues) | ||
or the [project tracker](https://github.com/nick-thompson/react-juce/projects/1) to see if there's outstanding work that you might | ||
be able to get started. Or feel free to propose an idea or offer feedback by [opening an issue](https://github.com/nick-thompson/react-juce/issues/new) as well. | ||
## Contributing | ||
|
||
I don't have a formal style guide at the moment, so please try to match the present formatting in any code contributions. | ||
Yes, please! We would be very happy to welcome your involvement. Take a look at the [open issues](https://github.com/JoshMarler/react-juce/issues) | ||
or the [project tracker](https://github.com/JoshMarler/react-juce/projects/1) to see if there's outstanding work that you might | ||
be able to get started. Or feel free to propose an idea or offer feedback by [opening an issue](https://github.com/JoshMarler/react-juce/issues/new) as well. | ||
|
||
## License | ||
|
||
See [LICENSE.md](https://github.com/nick-thompson/react-juce/blob/master/LICENSE.md) | ||
See [LICENSE.md](https://github.com/JoshMarler/react-juce/blob/master/LICENSE.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Debugger Support | ||
#Debugger Support | ||
|
||
(Because console.log() isn't always enough) | ||
|
||
|
Oops, something went wrong.