React Native online IDE & code editor for technical interviews
Experience the React Native IDE yourself
See just how easy and intuitive CoderPad Interview is to use below.
Guidelines to use React Native in this online IDE
Running Native Web on CoderPad
This pad is running a React Native Web app that is served by Expo. Changes are automatically captured as you type them, and other people in the pad can see them. You can add as many files to the project as you need, as well as any NPM packages.
TypeScript
The app is pre-configured to support TypeScript, but you can define .js
and .jsx
files instead.
IntelliSense
IntelliSense is running across your entire project, allowing you to see when there are syntax errors or to get quick hints for how to resolve errors or TypeScript issues.
Shell
A shell is provided to you so you can inspect your container in more detail. The shell can be used to install NPM packages using npm install <package>
. In addition to installing packages, the shell can be used for executing a test suite if you have one defined.
✅ While it’s possible to edit files directly from the shell, we recommend using the editor to make your changes. That way, other people in the pad can see your changes as they’re being made.
Container Limits
The container running your application has a few limitations. Currently, we don’t limit your CPU usage, though this may change in future. In addition to CPU, we monitor the network bandwidth that is consumed, and limit you to 75 MB for the duration of the container. Finally, we limit the amount of memory accessible to each container to 2 GB.
Assets
Out-of-the-box support for SVG files is included, just add an .svg
file and then import it wherever you need it. Other assets will need to be hosted elsewhere and fetched via the shell, or just referenced directly in HTML tags.