sunnymh-scraper/index.js
2025-03-27 17:33:38 +08:00

8 lines
167 B
JavaScript

const axios = require('axios');
const postData = {
mangaId: 'yourMangaId',
mangaName: 'yourMangaName'
};
axios.post('http://localhost:4000/insert', postData)