nodejs
No long description provided.
Installation
dagger install github.com/camptocamp/daggerverse/nodejs@ca4521be520700d7a8496c20c7bccafe2013d400
Entrypoint
Return Type
Nodejs !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
npmrc | Secret | - | No description provided |
Example
dagger -m github.com/camptocamp/daggerverse/nodejs@ca4521be520700d7a8496c20c7bccafe2013d400 call \
func (m *myModule) example() *Nodejs {
return dag.
Nodejs()
}
@function
def example() -> dag.Nodejs:
return (
dag.nodejs()
)
@func()
example(): Nodejs {
return dag
.nodejs()
}
Types
Nodejs 🔗
configuration() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
container | Container ! | - | No description provided |
Example
dagger -m github.com/camptocamp/daggerverse/nodejs@ca4521be520700d7a8496c20c7bccafe2013d400 call \
configuration --container IMAGE:TAG
func (m *myModule) example(container *Container) *Container {
return dag.
Nodejs().
Configuration(container)
}
@function
def example(container: dagger.Container) -> dagger.Container:
return (
dag.nodejs()
.configuration(container)
)
@func()
example(container: Container): Container {
return dag
.nodejs()
.configuration(container)
}
container() 🔗
Return Type
Container !
Example
dagger -m github.com/camptocamp/daggerverse/nodejs@ca4521be520700d7a8496c20c7bccafe2013d400 call \
container
func (m *myModule) example() *Container {
return dag.
Nodejs().
Container()
}
@function
def example() -> dagger.Container:
return (
dag.nodejs()
.container()
)
@func()
example(): Container {
return dag
.nodejs()
.container()
}