npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cloudbase/framework-plugin-dart

v1.9.7

Published

云开发 Tencent CloudBase Framework Dart Server Plugin 插件,将项目下的 Dart Server 一键部署云开发环境,提供自动弹性伸缩的高性能 Dart Server 服务

Downloads

405

Readme

Tencent CloudBase Framework Function Plugin

Tencent CloudBase Framework Dart Server Plugin

Github License Npm version issue PRs Welcome star

云开发 CloudBase Framework 框架「Dart Server」插件: 通过云开发 CloudBase Framework 框架将 Dart Server 一键部署到云开发环境,提供生产环境可用的自动弹性伸缩的高性能 Dart Server 应用服务。可以搭配 Flutter 框架,实现云端一体开发。

功能特性

  • 无须关心底层架构: 只需要开发业务服务,不用适配底层架构
  • 节约成本: 资源伸缩,弹性扩缩容,灵活计费,极大节约资源成本
  • 框架支持: 无缝支持 Dart Server 框架构建的项目

使用方法

步骤一. 准备工作

具体步骤请参照 准备云开发环境和 CloudBase CLI 命令工具

步骤二. 进入项目目录进行初始化

执行以下命令来初始化一个全新的 dart server 项目

cloudbase init --template dart

步骤三. 一键部署

cloudbase framework deploy

配置

默认情况下不需要任何配置即可使用,以下配置参数针对有特殊需求的场景

配置示例

cloudbase init 之后会创建云开发的配置文件 cloudbaserc.json,可在配置文件的 plugins 里修改和写入插件配置

{
  "envId": "{{envId}}",
  "framework": {
    "plugins": {
      "client": {
        "use": "@cloudbase/framework-plugin-dart",
        "inputs": {
          "serviceName": "dartapp",
          "servicePath": "/dartapp",
          "localPath": "./"
        }
      }
    }
  }
}

配置参数说明

serviceName

必填,服务名,字符串格式,如 dart-api

servicePath

必填,服务路径配置, 字符串格式, 如 /dart-api

localPath

选填,本地代码文件夹相对于项目根目录的路径,默认值 ./

localAbsolutePath

选填,本地代码文件夹的绝对路径

version

选填,版本名,默认值 1.0.0

isPublic

选填,是否对外网开放访问,默认值 true

更多插件

请访问 CloudBase Framework 插件列表 搭配使用其他插件

文档资料