Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please type your username.

Please type your E-Mail.

Please choose an appropriate title for the post.

Please choose the appropriate section so your post can be easily searched.

Please choose suitable Keywords Ex: post, video.

Browse

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Logo

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Navigation

  • Home
  • About Us
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • About Us
  • Contact Us
Home/ Questions/Q 1312

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise Latest Questions

Author
  • 62k
Author
Asked: November 25, 20242024-11-25T06:59:06+00:00 2024-11-25T06:59:06+00:00

Remix + Express + TS

  • 62k

How to Add TypeScript to a Remix + Express Project

Hello! In this article, I'll guide you through the steps to add TypeScript to a Remix + Express boilerplate project. By the end of this tutorial, you'll have a fully functional Remix app running with Express and Typescript. You can find the final code here.

Step 1: Clone the Official Express Starter

First, let's start by cloning the official Remix Express starter template:

npx create-remix@latest --template remix-run/remix/templates/express 
Enter fullscreen mode Exit fullscreen mode

Step 2: Add Required Dependencies

Next, install the additional dependencies needed for TypeScript support:

npm install -D esbuild tsx 
Enter fullscreen mode Exit fullscreen mode

Step 3: Create a TypeScript Server File

Remove the existing server.js file, and create a new file named server/index.ts.

Then, copy and paste the following code into server/index.ts:

// server/index.ts import { createRequestHandler } from "@remix-run/express"; import { type ServerBuild } from "@remix-run/node"; import compression from "compression"; import express from "express"; import morgan from "morgan";  const viteDevServer =   process.env.NODE_ENV === "production"     ? undefined     : await import("vite").then((vite) =>         vite.createServer({           server: { middlewareMode: true },         })       );  const app = express();  app.use(compression());  // http://expressjs.com/en/advanced/best-practice-security.html#at-a-minimum-disable-x-powered-by-header app.disable("x-powered-by");  // handle asset requests if (viteDevServer) {   app.use(viteDevServer.middlewares); } else {   // Vite fingerprints its assets so we can cache forever.   app.use(     "/assets",     express.static("build/client/assets", { immutable: true, maxAge: "1y" })   ); }  // Everything else (like favicon.ico) is cached for an hour. You may want to be // more aggressive with this caching. app.use(express.static("build/client", { maxAge: "1h" }));  app.use(morgan("tiny"));  async function getBuild() {   try {     const build = viteDevServer       ? await viteDevServer.ssrLoadModule("virtual:remix/server-build")       : // @ts-expect-error - the file might not exist yet but it will         // eslint-disable-next-line import/no-unresolved         await import("../build/server/remix.js");      return { build: build as unknown as ServerBuild, error: null };   } catch (error) {     // Catch error and return null to make express happy and avoid an unrecoverable crash     console.error("Error creating build:", error);     return { error: error, build: null as unknown as ServerBuild };   } } // handle SSR requests app.all(   "*",   createRequestHandler({     build: async () => {       const { error, build } = await getBuild();       if (error) {         throw error;       }       return build;     },   }) );  const port = process.env.PORT || 3000; app.listen(port, () =>   console.log(`Express server listening at http://localhost:${port}`) );  
Enter fullscreen mode Exit fullscreen mode

Step 4: Update Vite Configuration

To build the Express server after Remix completes its build, update your vite.config.ts file with the following content:

import { vitePlugin as remix } from "@remix-run/dev"; import { defineConfig } from "vite"; import tsconfigPaths from "vite-tsconfig-paths"; import esbuild from "esbuild";  export default defineConfig({   plugins: [     remix({       future: {         v3_fetcherPersist: true,         v3_relativeSplatPath: true,         v3_throwAbortReason: true,       },       serverBuildFile: 'remix.js',       buildEnd: async () => {         await esbuild.build({           alias: { "~": "./app" },           outfile: "build/server/index.js",           entryPoints: ["server/index.ts"],           external: ['./build/server/*'],           platform: 'node',           format: 'esm',           packages: 'external',           bundle: true,           logLevel: 'info',         }).catch((error: unknown) => {           console.error('Error building server:', error);           process.exit(1);         });       }     }),     tsconfigPaths(),   ], }); 
Enter fullscreen mode Exit fullscreen mode

Step 5: Update NPM Scripts

Now, update the start and dev scripts in your package.json:

"scripts": {   "build": "remix vite:build",   "dev": "tsx server/index.ts",   "lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",   "start": "cross-env NODE_ENV=production node ./build/server/index.js",   "typecheck": "tsc" } 
Enter fullscreen mode Exit fullscreen mode

Conclusion

That's it! Now you can continue writing your Remix code as usual. But you might be wondering: why would you need this setup? By using Express, every request goes through the Express server, allowing you to use Express middlewares to pass data to Remix, such as user context while implementing authentication.

In a future article, I'll show you how to add Lucia-Auth to this template 👀.

Stay tuned! 👋

javascriptremixtypescriptwebdev
  • 0 0 Answers
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question

Stats

  • Questions 4k
  • Answers 0
  • Best Answers 0
  • Users 2k
  • Popular
  • Answers
  • Author

    How to ensure that all the routes on my Symfony ...

    • 0 Answers
  • Author

    Insights into Forms in Flask

    • 0 Answers
  • Author

    Kick Start Your Next Project With Holo Theme

    • 0 Answers

Top Members

Samantha Carter

Samantha Carter

  • 0 Questions
  • 20 Points
Begginer
Ella Lewis

Ella Lewis

  • 0 Questions
  • 20 Points
Begginer
Isaac Anderson

Isaac Anderson

  • 0 Questions
  • 20 Points
Begginer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Querify Question Shop: Explore Expert Solutions and Unique Q&A Merchandise

Querify Question Shop: Explore, ask, and connect. Join our vibrant Q&A community today!

About Us

  • About Us
  • Contact Us
  • All Users

Legal Stuff

  • Terms of Use
  • Privacy Policy
  • Cookie Policy

Help

  • Knowledge Base
  • Support

Follow

© 2022 Querify Question. All Rights Reserved

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.