Understanding the File Structure of a ROR Application as React Dev

As a JavaScript developer familiar with React, transitioning to Ruby on Rails (RoR) can feel like stepping into a new world. While both are powerful frameworks for building web applications, their file structures and organization principles differ significantly. This blog post will guide you through the file structure of a Rails application, drawing parallels to concepts you’re already familiar with in the JavaScript ecosystem.

The Root Directory

When you create a new Rails application, you’ll notice a well-organized directory structure. This is one of Rails’ core principles:

“Convention over Configuration.”

While in React projects you often have the freedom to structure your application as you see fit, Rails provides a standardized structure that all Rails developers follow.

Key Directories and Their Purposes

a. app/

This is the heart of your Rails application, similar to the src folder in many React projects. It contains the core components of your application:

controllers/ : Similar to React components that handle logic, controllers in Rails handle the logic for processing requests and generating responses.

models/: These are similar to your data models or state management in React. Models in Rails interact with the database and encapsulate business logic.

views/ : These are analogous to your JSX templates in React. Views in Rails are typically written in ERB (Embedded Ruby) and define how data should be presented.

helpers/ : These are utility modules for views, somewhat similar to utility functions you might use in React components.

javascript/ : With the introduction of Webpacker in Rails 5.1+, this is where your JavaScript code lives, including any React components you might use.
assets/ : This directory is for your static assets like images, stylesheets, and fonts.

b. config/

This directory is crucial for application configuration. It’s somewhat similar to your package.json and other config files in a JavaScript project, but more extensive:

routes.rb : This file defines URL routes for your application. It’s analogous to defining routes in React Router, but for your entire application.

database.yml : This configures your database connections, similar to how you might set up database connections in a Node.js application.

application.rb and environment/: These files configure Rails itself and are used to set up environment-specific settings.

c. db/

This directory is all about your database:

migrate/ : Contains database migrations, which are Ruby scripts for modifying your database schema. This is similar to using tools like Knex.js (SQL Query Builder for Javascript) for migrations in Node.js applications.

schema.rb : Represents the current state of your database schema.

seeds.rb : Used for populating your database with initial data, similar to seeding scripts you might write for a Node.js/MongoDB application.

d. public/

This is similar to the public folder in a React application. It contains static files that are directly accessible to the web server:

- 404.html, 500.html: Error pages
- favicon.ico : The site’s favicon
- robots.txt : Instructions for web crawlers

e. test/

Rails comes with built-in testing support. This directory contains your test files, similar to a __tests__ directory in a React project or a test directory in a Node.js project.

Other Important Directories

- lib/ : For reusable code that doesn’t fit into models or controllers. This is similar to a utils or helpers directory in a React project.

- vendor/ : For third-party code. This is less commonly used now that package managers like Bundler are prevalent.

- tmp/ : For temporary files.

- log/ : Contains application log files.

Conclusion

While the file structure of a Rails application might seem overwhelming at first, it’s designed to keep your code organized and follow the principle of

“a place for everything, and everything in its place.”

As you work more with Rails, you’ll appreciate how this structure facilitates the rapid development of robust web applications.

Remember, just as you learned the ins and outs of React’s component structure and state management, you’ll soon become comfortable with Rails’ MVC (Model-View-Controller) architecture and its file organization. The transition might take some time, but the clear structure of Rails will help you build and maintain large applications with ease.

0
Subscribe to my newsletter

Read articles from NonStop io Technologies directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

NonStop io Technologies
NonStop io Technologies

Product Development as an Expertise Since 2015 Founded in August 2015, we are a USA-based Bespoke Engineering Studio providing Product Development as an Expertise. With 80+ satisfied clients worldwide, we serve startups and enterprises across San Francisco, Seattle, New York, London, Pune, Bangalore, Tokyo and other prominent technology hubs.