It would be nice to have a string "constructor" which takes a `string_view` Could be as simple as: ```cpp Napi::String::New(napi_env env, std::string_view value) { return Napi::String::New(env, value.data(), value.size()); } ```