Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@inrupt/generator-solid-react
Advanced tools
Based on Facebook's Create React App.
Application Generator for Solid React applications. Part of the React SDK for Solid.
You will need administrative privilege on your local computer to install the generator and prerequisites. Depending upon your operating system:
To install the generator, you will need both npm and Yeoman if you don't already have them.
npm install -g yo
To install the generator:
npm install -g @inrupt/generator-solid-react
Once the generator is installed, you can create a new application with just a few steps.
yo @inrupt/solid-react
npm run start
in the new folder, otherwise you can begin editing and writing your application!Note: We have noticed an error is sometimes thrown when the generator tries to install one of the dependencies of application. If this occurs, try installing Git and then recreating your application.
A Yeoman generator is a scaffolding tool at its core. You can use Yeoman to install applications based on templates. This repo is an example of a template - an application with a build, code structure, and dependencies added and organized for you!
Using a generator accelerates application development. You don't have to worry about best practices for foundational elements, because we've incorporated them. Our template generates a fully functional application foundation that becomes the base of your new project.
We have included integrations with essential libraries, as well as pages, routes, and components that are both useful in most Solid applications (like login pages) but also serve as example code to demonstrate how to interface with Solid and Linked Data.
The generated application also incorporates our Atomic Style Guide for Solid (source available here), featuring a nice integration with Styled Components.
Once you've run the generator and created your starter application, you'll have a site with some basic functionality and style guide integration. As the SDK is continually evolving, take a look at the React SDK for Solid Release Timeline for what has been implemented and what is currently planned.
If you would like to add your own look and feel, there are two options. First, you can override the styles from the style guide on demand. A list of the classes and example code can be found on the github page. Second, you could remove the style guide entirely, by removing the dependency from npm / package.json. Note if you do this, the application will lose almost all of its styling, and will need work to look "right" again.
Next, you can start building your application! Feel free to remove any pages or code you no longer need. You can use pages (such as the Welcome Page) provided by the generator as a template for how to build your next pages.
There are also examples of how to use libraries like LDFlex for reading and writing data to a POD, and examples of using existing components.
We provide different types of error handling in the generated application, which ultimately fall into the following two groups:
Service Errors: These errors usually come from an external resource, like a server, library, or other dependency. In our case, this also includes errors from the Solid Server. We use try/catch blocks to display a message to the user.
UI Errors: Data errors when a component waits for formatted data typically lead to these. If the data format is wrong, or there are missing properties that are required, this kind of error could trigger. We're using React Error Boundaries to show custom messages to the user, rather than the default, which is to show the component tree.
We provide a custom wrapper component around the React Toast Notifications library to handle Service Errors.
Usage
First, you will need to import ToastConsumer to have Toaster methods available:
import { ToastConsumer } from 'react-toast-notifications';
Second, call the add method to show a toaster notification
<ToastConsumer>
{({ add }) => (
<button onClick={(e) => add(['Title', 'Message'], { appearance: 'error | success | warning' })}>
Toasty
</button>
)}
</ToastConsumer>
You can also use Higher-Order Components to have props available in your component:
withToastManager(YourComponent);
The idea is to catch all of the errors from external services and show the user as much detail as we can about the source of the error.
We are using React Error Boundaries, and we have a top level component called ErrorBoundaries
located in the components
folder to catch all possible errors in our components.
Also included in the same folder is a custom markup component for these global errors, appropriately called GlobalErrors
. It contains the actual HTML markup and default text for this component.
In the event you want more specific errors in a given component, you can call ErrorBoundaries and create your own custom markup:
<ErrorBoundary
component={(error, info) => <GlobalError error={error} info={info} />} >
<App />
</ErrorBoundary>
Internationalization (commonly known as i18n) is a core part of many web applications. We have integrated the sample application with the common i18n tool, called react-i18next, which is a React plugin for the popular i18next plugin.
Our language and translation files are added as JSON files stored in the application. You can find the files in the installed application, under the public/locales folder.
Here you will find a folder per supported language, with a translation.json file inside. The JSON structure inside of the file is broken down by feature area, such as Welcome for the Welcome page.
The react-i18next plugin is automatically checking for a language code in the localStorage item i18nextLng
. When the user takes an action that should change the language, simple store the language code (e.g. en-us
) in this localStorage setting.
An example of both setting and getting a language can be seen in our component LanguageDropdown
under /src/components/Utils.
To add a new language:
First add a new folder and translation file to the /public/locales folder, with translations in place.
Next, inside language-dropdown.component.js, add the new language to const languages
. This object contains the languages, with an id and an icon. In this case, the icon maps to a flag, which is mapped using flag-icon-css. This will add the language and flag to the dropdown.
Once those two steps are complete then the new language should be compatible with the generated application.
Once your application is ready, you can deploy it to a server of your choice.
It is highly recommended that you ensure your server is utilizing TLS. If not, you may encounter security-related errors in the browser, particular in Google Chrome.
FAQs
Solid React Application Generator
The npm package @inrupt/generator-solid-react receives a total of 54 weekly downloads. As such, @inrupt/generator-solid-react popularity was classified as not popular.
We found that @inrupt/generator-solid-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.