Useage of CSV for Django Rest Framework - reactjs

I've been trying to build a website with a backend via Django and a frontend via React. I would like to make it so users can see the contents of a CSV file. The Django rest framework site recommends using the following: https://github.com/mjumbewu/django-rest-framework-csv#readme
I was wondering if anyone had any examples of how to use this to turn into an api that can then be used on the frontend with react. I can't seem to find any examples of how to do this.

Related

How to use Structr with ReactJS via RESTful APIs?

How to use Structr with a frontend framework like ReactJS, Vue etc?
I want to create a React app entirely separately from Structr that only talks to it via RESTful API.
How to talk to Structr via separate frontend via RESTful API?
Do I just create pages and render raw data which'll serve as paths for API endpoints?
Or does it have a "hidden" (can't seem to find it in the docs) RESTful API already present that I can use?
Yes, Structr has a RESTful API - you can find the docs here: https://docs.structr.com/docs/rest-guide

Best approach to upload large files to Rails app using React/electron as front-end

I would like to know what is the best approach to implement the upload of large files to a Rails app but the front-end isn't in Rails it is in React/electron. Besides, I can't use S3 or any kind of cloud storage the files goes directly to the server.
You need 2 things.
backend service that handles the file uploads via API
frontend library to call to the backend via API
For the backend you could use something like paperclip, carrierwave or active storage
For the frontend I like to use Uppy which has a very user-friendly UI and is compatible with react
Here is a guide that could be useful to you https://gorails.com/episodes/uppy-with-active-storage

Which content management for react websites?

I'm getting to be quite proficient at writing websites with a reactjs frontend. So far I've used a .NET Core backend and an SQL database with it, but recently I've gone a bit into switching the .NET stuff out for an ExpressJS backend.
However, for many web pages it can be helpful to have some sort of content management system for the customer to put in custom texts and stuff.
So ... what do you guys suggest I look into for content management? It would preferrably have to work with a reactjs frontend and probably an expressjs backend.

How to use autorest generated client with react?

We have created an API using .Net core and have created a swagger.json file for all the endpoints. Now I need to integrate the endpoints with my frontend (I am using reactjs for frontend).
I have generated the client via autorest (npmjs.com/package/autorest). Now I want to work with generated client in react. How can I achieve this?

Best Frontend for API RESTfull expres.js and mongodb?

I am beginning with node.js, mongodb ... I want to make a web application that connects to a mongodb and to create a CRUD product. I've created my API Restfull with express.js and mongodb. Now I have to do the frontend and I'm lost. For the Frontend I plan to use AngularJS, ReactJs or EmberJS but I do not know what should I choose to start, because I've never used any of these technologies and I would use it more easy to use and understand if possible (or if there are other, easier). Any tips?

Resources