I need to store my data in .txt or .json files.
And it's good to load file with axios, for example, and then output the JSON.parsed data. For example, I have file "data/tweets.json", and there are tons of tweets in json format. Well, I use axios.get ... and then I output content to needed component.
Well, and I cannot use things like import tweets from "@/data/tweets.ts"
, I need to make something db shaped, but without db engines.
Is there some traditional, easy way to make it?
Maybe there is some kind of node_nodule for the task?
Is there some config for Vue app for the case?