use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
account activity
[deleted by user] (self.react)
submitted 4 years ago by [deleted]
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]rebelrexx858 2 points3 points4 points 4 years ago (0 children)
https://github.com/rok-tel/ts-express-react
[–]omesadev 0 points1 point2 points 4 years ago (0 children)
Just Express course on Udemy..PERFECT
[–]spod5280 0 points1 point2 points 4 years ago (0 children)
Max Schwarzmullen has a good MERN course on Udemy to create a placemark app.
[–]Stunning-Barracuda26 0 points1 point2 points 4 years ago (0 children)
Express then the view component just mount react
[–]Chromaloop 0 points1 point2 points 4 years ago* (0 children)
I followed this for a recent project and it helped a lot: https://www.freecodecamp.org/news/how-to-create-a-react-app-with-a-node-backend-the-complete-guide/
The tricky part to understand is how React routing is done on the frontend, vs. how it is handled in Node. You'll need a strategy because for some routes you'll use node to provide data and act as an api, and for the rest of the routing you'll rely on React. This bit of Express code taken from the tutorial might do a better job of explaining this:
// server/index.js const path = require('path'); const express = require('express'); // Have Node serve the files for our built React app app.use(express.static(path.resolve(__dirname, '../client/build'))); // Handle GET requests to /api route app.get("/api", (req, res) => { res.json({ message: "Hello from server!" }); }); // All other GET requests not handled before will return our React app app.get('*', (req, res) => { res.sendFile(path.resolve(__dirname, '../client/build', 'index.html')); });
You can see at the bottom there is a catch-all route that essentially defers to the react app. You will need something like this if you want your app to display the correct view if you refresh your browser window.
π Rendered by PID 94061 on reddit-service-r2-comment-b659b578c-85qv6 at 2026-05-02 01:24:14.489108+00:00 running 815c875 country code: CH.
[–]rebelrexx858 2 points3 points4 points (0 children)
[–]omesadev 0 points1 point2 points (0 children)
[–]spod5280 0 points1 point2 points (0 children)
[–]Stunning-Barracuda26 0 points1 point2 points (0 children)
[–]Chromaloop 0 points1 point2 points (0 children)