swissonid
swissonid

Reputation: 1035

What is the official way to host dart / flutter package in enterprise (private) environment?

Since the package pub_server is discontinued. But get recommended for that use case in the README.md from pub-dev

So I'm a bit confused about what is now the recommended way.

I know about the package unpub but it doesn't feel right to use it in an environment.

Is there something official from the dart team which is not discontinued?

Upvotes: 7

Views: 1787

Answers (1)

Skandar Munir
Skandar Munir

Reputation: 453

You can use internal private pub server. Flutter team use the same for Internal private packages and plugins.

private pub server

https://pub.dev/packages/unpub

To use this server you have to install mongodb.

https://docs.mongodb.com/manual/installation/

Upvotes: 2

Related Questions