上一页 1 ··· 83 84 85 86 87 88 89 90 91 ··· 122 下一页

2019年2月15日

简单 babel plugin 开发-使用lerna 工具

摘要: babel在现在的web 应用开发上具有很重要的作用,帮助我们做了好多事情,同时又有 比较多的babel plugin 可以解决我们实际开发上的问题。 以下只是学习下如果编写一个简单的babel plugin,项目使用lerna 进行代码包管理 插件开发模型 项目准备 lerna 项目初始化 ler 阅读全文

posted @ 2019-02-15 10:50 荣锋亮 阅读(839) 评论(0) 推荐(0) 编辑

2019年2月14日

简单webpack plugin 开发

摘要: 重要是学习下怎么开发webpack plugin,同时记录下 插件模型 webpack 是一个插件,可以是javascript class ,或者具名 class 定义apply 方法 指定一个绑定到webpack 自身的事件钩子 使用webpack提供的plugin api 操作构建结果 参考格式 阅读全文

posted @ 2019-02-14 14:21 荣锋亮 阅读(870) 评论(0) 推荐(0) 编辑

immutable-styles 基本试用

摘要: 此文档来自官方文档,从官方demo 学起比较快 安装 官方推荐的是通过webpack 的构建方式,通过babel loader clone 代码 git clone https://github.com/callum-hart/immutable-styles-tutorial.git 安装依赖 y 阅读全文

posted @ 2019-02-14 10:48 荣锋亮 阅读(252) 评论(0) 推荐(0) 编辑

2019年2月13日

CSS Overrides: Friend or Foe?

摘要: 转自:http://www.callumhart.com/blog/css-overrides-friend-or-foe Anyone familiar with CSS will know how fragile it can be. Changes to CSS must be made ca 阅读全文

posted @ 2019-02-13 09:41 荣锋亮 阅读(286) 评论(0) 推荐(0) 编辑

2019年2月12日

react-static 基于react 渐进式静态站点生成框架

摘要: react-static 是一个不错的基于react 开发的静态站点生成框架,可以用来替代create-react-app 包含的特性 100% react 很快的构建以及性能 自动代码以及数据分离 seo 友好 100% 支持react 的生态,包含css in js graphql redux 阅读全文

posted @ 2019-02-12 20:36 荣锋亮 阅读(2375) 评论(0) 推荐(0) 编辑

immutable-styles 新的css style 开发模式

摘要: immutable-styles 是一个开源的library,可以方便我们开发强壮以及可预测的web 界面,不用担心其他css 的影响 特性 编译时错误提示 防止css 覆盖 分离破坏点 严格继承 重复属性捕获 不可变混入 使用jsx 编写 参考资料 https://github.com/callu 阅读全文

posted @ 2019-02-12 10:12 荣锋亮 阅读(324) 评论(0) 推荐(0) 编辑

2019年2月10日

awesome-workflow-engines

摘要: 转自:https://github.com/meirwah/awesome-workflow-engines awesome-workflow-engines A curated list of awesome open source workflow engines Full fledged pr 阅读全文

posted @ 2019-02-10 22:52 荣锋亮 阅读(1371) 评论(0) 推荐(0) 编辑

Next generation configuration mgmt

摘要: 转自:https://purpleidea.com/blog/2016/01/18/next-generation-configuration-mgmt/ It’s no secret to the readers of this blog that I’ve been active in the 阅读全文

posted @ 2019-02-10 10:16 荣锋亮 阅读(262) 评论(0) 推荐(0) 编辑

go-elasticsearch 来自官方的 golang es client

摘要: elasticsearch 终于有了官方的golang sdk 了,地址 https://github.com/elastic/go-elasticsearch 当前还不稳定,同时主要是对于es7 的实现,后期会添加 5,6 的支持 参考资料 https://github.com/elastic/g 阅读全文

posted @ 2019-02-10 09:52 荣锋亮 阅读(10127) 评论(0) 推荐(0) 编辑

2019年2月9日

nginx unit nodejs 模块试用(续)

摘要: 最新(应该是18 年了)nginx unit 发布了新的版本,对于nodejs 的支持有很大的改进,上次测试过,问题还是 比较多,这次使用新版本在测试下对于nodejs 的支持,以及以前block 的问题。 备注: 测试系统centos 7 环境准备 配置yum源 /etc/yum.repos.d/ 阅读全文

posted @ 2019-02-09 00:28 荣锋亮 阅读(329) 评论(0) 推荐(0) 编辑

2019年2月8日

pack 方便的npm 构建工具

摘要: 一般我们都是使用nodejs 自身的npm 或者yarn进行 npm 包的开发(包括构建),但是随着强类型的开发模式 在实际web 的开发中越来越重要,大家一般都会选择使用typescript 等js 的超集语言进行web 开发。 pack 就是一款方便我们进行npm 包构建同时帮助我们生成type 阅读全文

posted @ 2019-02-08 14:15 荣锋亮 阅读(1508) 评论(0) 推荐(0) 编辑

2019年2月7日

WebSocket-Over-HTTP Protocol

摘要: 转自:https://pushpin.org/docs/protocols/websocket-over-http/ WebSocket-Over-HTTP Protocol The WebSocket-Over-HTTP protocol is a simple, text-based proto 阅读全文

posted @ 2019-02-07 17:44 荣锋亮 阅读(483) 评论(0) 推荐(0) 编辑

pushpin Server-sent events && openresty 集成试用

摘要: 前边有写过一个简单pushpin 集成stream 的demo,这次测试下sse 的功能 备注: 环境依然使用的是docker-compose运行 环境准备 docker-compose 文件 version: "3" services: pushpin: image: fanout/pushpin 阅读全文

posted @ 2019-02-07 17:35 荣锋亮 阅读(647) 评论(0) 推荐(0) 编辑

Rendering on the Web

摘要: 转自: https://developers.google.com/web/updates/2019/02/rendering-on-the-web Rendering on the Web Google Developers Web Updates02-06 23:52 As developers 阅读全文

posted @ 2019-02-07 09:55 荣锋亮 阅读(291) 评论(0) 推荐(0) 编辑

pushpin openresty 集成试用

摘要: pushpin 是一个很不错的将restapi 转换为reailtime api 的proxy,openresty 具有很强的nginx 控制能力 可以方便的用来进行api 的开发,默认其他语言pushpin 提供了sdk ,但是lua 的暂时还没有,所以基于 http 请求,搞一个简单的测试,后期 阅读全文

posted @ 2019-02-07 09:54 荣锋亮 阅读(401) 评论(0) 推荐(0) 编辑

2019年2月5日

100 webhook implementations

摘要: 转自: https://streamdata.io/blog/100-webhook-implementations/ 很不错的整理 What is the scope of the event-driven API landscape - We give you 100 Webhook imple 阅读全文

posted @ 2019-02-05 23:07 荣锋亮 阅读(402) 评论(0) 推荐(0) 编辑

streamdataio 实时数据分发平台

摘要: streamdataio 是一个实时的数据分发平台(当然是收费的,但是设计部分可以借鉴),我们可以通过这个平台 方便的拉取rest api 数据,或者发布数据到后端,streamdataio 可以帮助你解决复杂的实时数据发布 典型的参考架构 当然,streamdataio 支持的发布模型还是比较多, 阅读全文

posted @ 2019-02-05 23:00 荣锋亮 阅读(1196) 评论(0) 推荐(0) 编辑

Generic Realtime Intermediary Protocol

摘要: 转自:https://pushpin.org/docs/protocols/grip/ Introduction The Generic Realtime Intermediary Protocol (“GRIP”) makes it possible for a web service to de 阅读全文

posted @ 2019-02-05 19:51 荣锋亮 阅读(229) 评论(0) 推荐(0) 编辑

pushpin 将web services 转换为realtime api 的反向代理工具

摘要: pushpin 是一款反向代理工具,可以将web services 转换为实时的api 参考架构图 包含的特性 透明 无状态 共享nothing 发布&&订阅模型 几种灵活用法 基本使用 集成api 管理工具 集成消息队列 微服务模型 大规模cdn 模型 说明 pushpin 自己设计为了一个标准的 阅读全文

posted @ 2019-02-05 19:50 荣锋亮 阅读(350) 评论(0) 推荐(0) 编辑

Pushpin How it works

摘要: 转自:https://pushpin.org/docs/about/#how-it-works Introduction Pushpin is a reverse proxy server that makes it easy to implement WebSocket, HTTP streami 阅读全文

posted @ 2019-02-05 19:50 荣锋亮 阅读(381) 评论(0) 推荐(0) 编辑

2019年2月4日

What is Zeebe?

摘要: 转自:https://zeebe.io/what-is-zeebe/ Zeebe is a workflow engine for microservices orchestration. This write-up will help you understand exactly what Zee 阅读全文

posted @ 2019-02-04 20:36 荣锋亮 阅读(1255) 评论(0) 推荐(0) 编辑

pipenv 方便的python 开发工作流工具

摘要: pipenv 将 composer、bundler、npm、yarn、cargo 等比较方便的包管理工具添加到了python 语言中,可以 帮助我们自动的管理virtualenv ,同时可以方便的从pipefile 中添加或者移除包 pipenv 解决的问题 我们不用在独立的使用pip 以及viru 阅读全文

posted @ 2019-02-04 19:19 荣锋亮 阅读(499) 评论(0) 推荐(0) 编辑

zeebe docker-compose 运行(包含monitor)

摘要: 环境准备 docker-compose 文件 version: "3" services: db: image: oscarfonts/h2 container_name: zeebe_db ports: - "1521:1521" - "81:81" monitor: image: camunda 阅读全文

posted @ 2019-02-04 12:55 荣锋亮 阅读(1033) 评论(0) 推荐(0) 编辑

几个微服务编排工具

摘要: uber/cadence 分布式、伸缩、高可靠的异步执行业务逻辑,工具比较丰富,同时提供了可视化UI https://github.com/uber/cadence netflix/conductor 来自netflix 的为微服务编排引擎,支持的功能很丰富,同时文档也比较全 参考架构 https: 阅读全文

posted @ 2019-02-04 11:38 荣锋亮 阅读(17491) 评论(4) 推荐(0) 编辑

2019年2月3日

BizDevOps — the true value proposition of workflow engines

摘要: 转自:https://blog.bernd-ruecker.com/bizdevops-the-true-value-proposition-of-workflow-engines-f342509ba8bb Whenever you implement core business logic you 阅读全文

posted @ 2019-02-03 22:23 荣锋亮 阅读(416) 评论(0) 推荐(0) 编辑

Why service collaboration needs choreography AND orchestration

摘要: 转自:https://blog.bernd-ruecker.com/why-service-collaboration-needs-choreography-and-orchestration-239c4f9700fa Let’s assume you want to build a simple 阅读全文

posted @ 2019-02-03 22:22 荣锋亮 阅读(499) 评论(0) 推荐(0) 编辑

How to implement long running flows, sagas, business processes or similar

摘要: 转自:https://blog.bernd-ruecker.com/how-to-implement-long-running-flows-sagas-business-processes-or-similar-3c870a1b95a8 Long running flows can span fro 阅读全文

posted @ 2019-02-03 22:18 荣锋亮 阅读(469) 评论(0) 推荐(0) 编辑

What are long running processes?

摘要: 转自:https://blog.bernd-ruecker.com/what-are-long-running-processes-b3ee769f0a27 Some communities have big reservations when using terms like workflow(o 阅读全文

posted @ 2019-02-03 22:14 荣锋亮 阅读(385) 评论(0) 推荐(0) 编辑

The Microservices Workflow Automation Cheat Sheet

摘要: Written by Bernd Rücker on Dec 12 2018 in the Best Practices category. Editor’s Note: This post originally appeared on Bernd Rücker’s blog and was cro 阅读全文

posted @ 2019-02-03 11:32 荣锋亮 阅读(390) 评论(0) 推荐(0) 编辑

2019年2月2日

cget cmake 包管理工具

摘要: cget 是一个方便的进行cmake 包下载以及安装的工具 包含的特性 非侵入,无需编写特殊钩子就可以使用cmake 开箱即用, 由于使用了标准的基于cmake的方式,直接可以使用基于cmkae 的软件包 去中心, 我们可以使用github、 git、 url,本地文件系统进行软件包的安装 安装cg 阅读全文

posted @ 2019-02-02 21:44 荣锋亮 阅读(893) 评论(0) 推荐(0) 编辑

buckaroo 试用

摘要: 我系统是mac 所以选择的是mac 的版本,官方是支持跨平台的。 安装 mac 版本安装 wget https://github.com/LoopPerfect/buckaroo/releases/download/v2.0.0/buckaroo-macos -O buckaroo chmod +x 阅读全文

posted @ 2019-02-02 12:24 荣锋亮 阅读(406) 评论(0) 推荐(0) 编辑

buckaroo 去中心化的c++包管理工具

摘要: buckaroo 是一款去中心化的c++ 包管理工具,使用上,类似yarn(nodejs),cargo (rust) ,使用buckaroo 我们可以很容易集成一个大规模的项目 支持以下特性 直接从GitHub,BitBucket,GitLab,托管Git和HTTP中提取依赖项 完全可重现的构建和依 阅读全文

posted @ 2019-02-02 11:19 荣锋亮 阅读(575) 评论(0) 推荐(0) 编辑

2019年2月1日

Benchmarking Zeebe: An Intro to How Zeebe Scales Horizontally and How We Measure It

摘要: Written by Felix Müller and Mike Winters on Jun 12 2018 in the Inside Zeebe category. In the past few weeks, we’ve mentioned Zeebe’s performance in ho 阅读全文

posted @ 2019-02-01 21:43 荣锋亮 阅读(380) 评论(0) 推荐(0) 编辑

What's New In Zeebe: Scaling Zeebe, New Client APIs, Faster Requests, Timestamps, NodeJS Client, and Default Topic is Back!

摘要: Written by Daniel Meyer on May 16 2018 in the What's New In Zeebe category. Welcome to the first-ever edition of “What’s New In Zeebe”, where we share 阅读全文

posted @ 2019-02-01 21:43 荣锋亮 阅读(500) 评论(0) 推荐(0) 编辑

Architecture options to run a workflow engine

摘要: This week a customer called and asked (translated into my own words and shortened): “We do composite services, orchestrating two or three CRUD-Service 阅读全文

posted @ 2019-02-01 21:42 荣锋亮 阅读(511) 评论(0) 推荐(0) 编辑

camunda 开源的bpm系统

摘要: 看到camunda 是在zeebe 的介绍中,实际上camunda 是一个很完整的bpm 平台,包含了很多在bpm 系统中需要的组件,以下为一张参考图 从上图可以看出,组件还是比较多的,对于完整的bpm 系统,组件基本都已经包含了,当然也提供了企业版 参考资料 https://camunda.com 阅读全文

posted @ 2019-02-01 21:30 荣锋亮 阅读(6165) 评论(0) 推荐(0) 编辑

zeebe 为微服务架构的工作流引擎

摘要: zeebe 是灵活、轻量的基于微服务架构的工作流引擎 包含以下特性: 可视化的额工作流 审计日志以及历史 水平缩放 持久化&&容错 消息驱动 操作容易 语言无关 工作流基于标准bpmn 2.0 协议 参考架构 来自官方的额一个简单workflow demo 参考资料 https://zeebe.io 阅读全文

posted @ 2019-02-01 21:08 荣锋亮 阅读(11371) 评论(1) 推荐(0) 编辑

2019年1月31日

几个方便的nodejs 任务调度框架

摘要: 摘录几个方便的nodejs 任务调度包 node-cron https://github.com/kelektiv/node-cron node-schedule https://github.com/node-schedule/node-schedule agenda https://github 阅读全文

posted @ 2019-01-31 13:22 荣锋亮 阅读(1422) 评论(0) 推荐(0) 编辑

2019年1月29日

使用kube_ping进行Keycloak群集设置 - DZone Cloud

摘要: 转自:https://www.jdon.com/51501 看看如何使用kube_ping和Keycloak实现自动发现? Keycloak是一个开源软件,提供身份管理和访问管理的单点登录。Keycoak使用不同类型的ping来发现群集的其他成员。我们将使用kube_ping作为发现(JGROUPS 阅读全文

posted @ 2019-01-29 18:36 荣锋亮 阅读(889) 评论(0) 推荐(0) 编辑

jenkins 集成 keycloak 认证

摘要: keycloak 是很不错的sso 工具,当然也有Jenkins 的插件,我们可以使用jenkins 插件,方便用户账户的管理 环境准别 docker-compose version: "3" services: jenkins: image: jenkins/jenkins:lts-alpine 阅读全文

posted @ 2019-01-29 16:28 荣锋亮 阅读(2362) 评论(0) 推荐(0) 编辑

上一页 1 ··· 83 84 85 86 87 88 89 90 91 ··· 122 下一页

导航