node_modules 的 es6 等价物是什么?
What is the es6 equivalent of node_modules?
我习惯了 require
但我正在玩 es6 模块。我决定更改我的目录结构,这意味着我必须去更改所有导入语句(import thing from "../thing"
变成 import thing from "../../thing"
等)。
我不得不经历并改变很多。使用 node_modules,这绝不是问题。
您是否总是必须在 es6 模块中指定路径,或者是否有某种 system/order-of-operation 用于查找模块?
我习惯了 require
但我正在玩 es6 模块。我决定更改我的目录结构,这意味着我必须去更改所有导入语句(import thing from "../thing"
变成 import thing from "../../thing"
等)。
我不得不经历并改变很多。使用 node_modules,这绝不是问题。
您是否总是必须在 es6 模块中指定路径,或者是否有某种 system/order-of-operation 用于查找模块?