I am trying to use GrapesJS with node JS and am new to both. I have run npm i
grapesjs and set type: module in my package.json
file.
I run - node myjsfile.js
in cmd prompt but the problem is that I get unknown file extension for the css file when I am just following GrapesJS getting started guide and adding the following 2 lines to myjsfile.js.
import 'grapesjs/dist/css/grapes.min.css';
import grapesjs from 'grapesjs';
If I remove the css import line of code and call node myjsfile.js then I get document not defined
for the import grapesjs from 'grapesjs'
Is there something I am missing when importing the JS and CSS for GrapesJS in a node js file?
Tried to import GrapesJS