Allow using micro-dev programmatically#89
Merged
leo merged 1 commit intovercel:masterfrom Dec 4, 2018
elnygren:feature/programmatical-usage
Merged
Allow using micro-dev programmatically#89leo merged 1 commit intovercel:masterfrom elnygren:feature/programmatical-usage
leo merged 1 commit intovercel:masterfrom
elnygren:feature/programmatical-usage
Conversation
|
Would be nice to release this change. Really appreciated. |
|
Please release this change. Much appreciated! |
|
Since this isn't published yet, someone should add another PR to return the server object from the index module, so that you can programmatically call: |
|
Could we get a release with this? Now that next includes an API system - it would be really nice to include dev output via the next runtime. |
|
please release this change :) thanks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi! I wanted to submit an idea I'm using myself with
ts-node-devin a TypeScript + (Apollo) GraphQL project where I usemicroas my server library.Problem
Using a
package.jsonscript such as the following:causes the process to crash on syntax errors etc. With
microthis can be fixed by programmatically using micro:However, as we all know (vercel/micro#337)
micro-devdoes not support programmatical usage. While many of the features are CLI specific, some are not.Solution
With this PR in place, one can do something like:
Comments
.listenwithinmicro-devwhen using the library like this. It would make this PR simpler and the usage a bit cleaner:It nothing else, this might act as a good reference for other micro & TypeScript users!
Cheers :)