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

@baiducloud/cfc-serverless-component

v1.0.4

Published

Baidu Cloud CFC Component

Downloads

11

Readme

百度云函数计算CFC组件

简介

通过百度云函数计算CFC组件,可以快速,方便的创建、配置和管理百度云CFC云函数。

快速开始

1. 安装

通过npm安装最新版本的serverless framework。

$ npm install -g serverless

2. 创建

可以通过现有的cfc template创建CFC函数

$ serverless create --template-url  https://github.com/baidubce/cfc-serverless-component/tree/master/templates/cfc
$ cd cfc

然后在根目录中的.env文件,添加百度云的AK, SK

# .env
BAIDU_ACCESS_KEY_ID='Your access key id'
BAIDU_SECRET_ACCESS_KEY='Your secret access key'

创建完成后的文件目录结构如下:

|- src
  |- index.js
|- serverless.yml
|- .env

3. 配置

可以通过修改本地文件夹中的serverless.yml文件修改函数配置

# serverless.yml
myFunction:
  component: "@baiducloud/cfc-serverless-component"
  inputs:
    name: cfc-serverless-nodejs #必须
    src: ./src  #code存放路径
    handler: index.handler #函数入口
    runtime: nodejs10 #运行时
    region: bj #地域
    description: My Serverless Function
    memorySize: 128
    timeout: 3
    logType:  #日志存储类型
    logBosDir: #日志存储路径
    environment:
      variables:
        kue1: value
    publish: false
    bosBucket: #若要从bos上传代码,代码存储的Bos bucket
    bosObject: #若要从bos上传代码,代码在bos中的object
    sourceTag: #区分CFC函数和小程序云函数
    deadLetterTopic: #死信队列topic
    vpcConfig:
      vpcId: #要绑定的VpcID
      subnetIds: #要绑定的子网列表
      securityGroupIds: #要绑定的安全组列表
    exclude:
      - .gitignore
      - .git/**
      - node_modules/**
      - .serverless
      - .env
    include:
      - ./func.zip

4. 部署

通过serverless命令进行部署,并且可以添加--debug查看部署过程中的信息。

$ serverless --debug

  DEBUG ─ Resolving the template's static variables.
  DEBUG ─ Collecting components from the template.
  DEBUG ─ Downloading any NPM components found in the template.
  DEBUG ─ Analyzing the template's components dependencies.
  DEBUG ─ Creating the template's components graph.
  DEBUG ─ Syncing template state.
  DEBUG ─ Executing the template's components graph.
  Starting deploy cfc component...
  deploy function...
  successfully deploy a function.

  myFunction:
    outpout:
      FunctionName: cfc-serverless-nodejs
      Runtime:      nodejs10
      Handler:      index.handler
      MemorySize:   128
      Timeout:      3
      Region:       bj
      Description:  My Serverless Function
      FunctionBrn:  brn:bce:cfc:bj:************************:function:cfc-serverless-nodejs:$LATEST
      CodeSha256:   vRGl9SOWu1fxbq3PjAxZgRJdksDn8SnqNt7eBGMHAOk=
      SourceTag:

  2s › myFunction › done

5. 移除

可以通过serverless remove移除部署的函数

$ serverless remove --debug

  DEBUG ─ Flushing template state and removing all components.
  Removing function cfc-serverless-nodejs from the bj region.
  Successfully removed function cfc-serverless-nodejs from the bj region.

  2s › myFunction › done

6. 测试

测试CFC Component组件,在test目录下的.env文件中添加百度云的AK、SK, 然后在test目录下执行$ sls deploy --debug部署函数, 部署成功后, 可以在百度云函数计算控制台函数列表中查看新建函数。最后执行$ sls remove --debug命令删除函数

7. 讨论

百度如流讨论群: 3040017