Building a React Application
Last updated
Last updated
In this tutorial, we’ll be building a simple React application that performs multilingual translation using Transformers.js! The final product will look something like this:
Useful links:
Copied
If prompted to install create-vite
, type y and press Enter.
Next, enter the project directory and install the necessary development dependencies:
Copied
To test that our application is working, we can run the following command:
Copied
Copied
ML inference can be quite computationally intensive, so it’s better to load and run the models in a separate thread from the main (UI) thread.
Since the model is quite large (>1 GB), we don’t want to download it until the user clicks the “Translate” button.
Copied
Modify App.jsx
in the src
directory. This file is automatically created when initializing our React project, and will contain some boilerplate code. Inside the App
function, let’s create the web worker and store a reference to it using the useRef
hook:
Copied
We recommend starting the development server again with npm run dev
(if not already running) so that you can see your changes in real-time.
First, let’s define our components. Create a folder called components
in the src
directory, and create the following files:
Copied
Progress.jsx
: This component will display the progress for downloading each model file.Copied
We can now use these components in App.jsx
by adding these imports to the top of the file:
Copied
Let’s also add some state variables to keep track of a few things in our application, like model loading, languages, input text, and output text. Add the following code to the beginning of the App
function in src/App.jsx
:
Copied
Next, we can add our custom components to the main App
component. We will also add two textarea
elements for input and output text, and a button
to trigger the translation. Modify the return
statement to look like this:
Copied
Don’t worry about the translate
function for now. We will define it in the next section.
Finally, we can add some CSS to make our app look a little nicer. Modify the following files in the src
directory:
index.css
:
App.css
Now that we have a basic user interface set up, we can finally connect everything together.
First, let’s define the translate
function, which will be called when the user clicks the Translate
button. This sends a message (containing the input text, source language, and target language) to the worker thread for processing. We will also disable the button so the user doesn’t click it multiple times. Add the following code just before the return
statement in the App
function:
Copied
Now, let’s add an event listener in src/worker.js
to listen for messages from the main thread. We will send back messages (e.g., for model loading progress and text streaming) to the main thread with self.postMessage
.
Copied
Finally, let’s fill in our onMessageReceived
function, which will update the application state in response to messages from the worker thread. Add the following code inside the useEffect
hook we defined earlier:
Copied
You can now run the application with npm run dev
and perform multilingual translation directly in your browser!
To build your application, simply run npm run build
. This will bundle your application and output the static files to the dist
folder.
Go to “Files” → “Add file” → “Upload files”. Drag the index.html
file and public/
folder from the dist
folder into the upload box and click “Upload”. After they have uploaded, scroll down to the button and click “Commit changes to main”.
That’s it! Your application should now be live at https://boincai.com/spaces/<your-username>/<your-space-name>
!
version 18+
version 9+
For this tutorial, we will use to initialise our project. Vite is a build tool that allows us to quickly set up a React application with minimal configuration. Run the following command in your terminal:
Visiting the URL shown in the terminal (e.g., ) should show the default “React + Vite” landing page. You can stop the development server by pressing Ctrl + C in the terminal.
Now we get to the fun part: adding machine learning to our application! First, install Transformers.js from with the following command:
For this application, we will use the model, which can perform multilingual translation among 200 languages. Before we start, there are 2 things we need to take note of:
We can achieve both of these goals by using a and some .
Create a file called worker.js
in the src
directory. This script will do all the heavy-lifing for us, including loading and running of the translation pipeline. To ensure the model is only loaded once, we will create the MyTranslationPipeline
class which use the to lazily create a single instance of the pipeline when getInstance
is first called, and use this pipeline for all subsequent calls:
LanguageSelector.jsx
: This component will allow the user to select the input and output languages. Check out the full list of languages .
For this demo, we will deploy our application as a static , but you can deploy it anywhere you like! If you haven’t already, you can create a free BOINC AI account .
Visit and fill in the form. Remember to select “Static” as the space type.