Use Node only for specific actions
As stated here (the screenshot) you can only opt into the node runtime by putting a directive on top of the file. This is not so great (for me at least) if this is the only option to use the node runtime because I only need node for a few (in my specific app one time) and want to group my functions into files by what they are doing.
Now that I have to put this node directive on top of the file I have to create to seperate files.
notifications-node.ts
-> Single function that needs node js
notification-convex.ts
-> Rest of the code
What I would like to see is that you can enable the runtime only for specific functions like that:

12 Replies
The team can answer on whether they're planning on improving this, but I have the same situation, and my convention is to have
<file>.ts
and <file>Node.ts
for keeping things organized. Nothing groundbreaking, but it works.
Oh I read the rest of your post and you're doing exactly this lolYeah 😆
Glad I could help! 😂
I mean it's just quality of life and has not a high priority but would be great to see this
I know Next works similarly with client and server directives - have you seen any examples out there of per-function directives like this?
yes, with the server actions
you can define the "use server" of the server action inside the server action funtion instead of the top of the file

Good example
this is difficult partially because Node and browser/Convex runtimes are different enough that usually you want different imports. If you've got a
const crypto = require("crypto")
at the top of the file, that file will only work in Node (unless we get very good at tree-shaking). so it may be possible, and we've seen the feature request before, but it's not easy.
for more context, what specifically do you need to use Node for? we're always trying to make the Convex default runtime more capableI'm using the node runtime because I need the web-push library to work which has many packages that are not supported by the convex runtime.
https://discord.com/channels/1019350475847499849/1246820030625087613/1247227694106546198
Namely:
- util
- url
- crypto
- https
- net
- tls
- assert
- stream
- buffer
- http
cool, thanks for the list! to draw out the example, how would you want to import these libraries if there were per-function "use node"?
good question. and i don't have an answer.
but maybe it's worth looking at the implementation of react because if I call a server action in a client component react also keeps the imports that are only used server side on the server as far as i know