-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next.js에서 'fs'관련 메소드 사용 시 "readFile is not a function" 에러 발생 #6
Milestone
Comments
guesung
changed the title
CSVLoader을 사용하니 아래와 같은 오류 발생
Next.js에서 'fs'관련 메소드 사용 시 "readFile is not a function" 에러 발생
May 26, 2023
파일을 읽고 써야 하는 'fs'는 브라우저에서 작동이 안된다. node와 같은 백단에서만 사용이 가능하다. 그렇다면 어떻게 해야할까? |
몰랐는데, Next.js의 API Routes는 Node.js 기반의 serverless function이라는 것이었다 !! WoW |
const run = async () => {
const {data} = await axios.get("/api/conversation");
console.log(data);
};
import "@utils/entrypoints.js";
import { CSVLoader } from "langchain/document_loaders/fs/csv";
import { NextResponse } from "next/server";
export async function GET(request: Request) {
const loader = new CSVLoader("public/data2.csv");
const docs = await loader.load();
return NextResponse.json(docs);
} |
Next.js의 api router는 node.js를 사용한다는 점을 이용하여 'fs'라이브러리를 이용하여 public폴더의 'data.csv'파일을 불러왔다. |
그런데, CSV 파일 모양이 이상하다. |
Closed
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Originally posted by @guesung in #2 (comment)
The text was updated successfully, but these errors were encountered: