Есть index.html. Подключается к нему js файл.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<h1 class="title">Title</h1>
<form action="#">
<input id="input" type="text" placeholder=".......">
<button id="btn">Поиск</button>
</form>
<ul id="list">
</ul>
<script src="render.js"></script>
</body>
</html>
С этим все хорошо. Ну в render.js, эта строка кода выдает ошибку: Uncaught ReferenceError: require is not defined. Почему??
const puppeteer = require('puppeteer'); /*Не только с puppeteer так, вообще со всем*/
Я запускаю программу через консоль, не в браузере. В package.json содержится следующие:
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "interface.js",
"scripts": {
"start": "electron ."
},
"author": "",
"license": "ISC",
"dependencies": {
"puppeteer": "^14.4.0",
}
}