-
```javascript
error: "kpm_facebook" wywalił się. jest teraz pokryty chorobą.
error: Error: TypeError: Cannot read property 'length' of undefined
at /var/www/Concierge/modules/kpm_facebook/face…
p0358 updated
7 years ago
-
Recently `co` moved to using promises, or more specifically yielding promises.
https://github.com/tj/co
There's been talk of having APIs in NG return promises. What are the downsides/upsides of retu…
-
### 创建koa2工程
新创建一个目录`hello-koa`并作为工程目录。在里面创建一个`app.js`,输入以下代码:
```js
// 导入koa,和koa 1.x不同,在koa2中,我们导入的是一个class,因此用大写的Koa表示:
const Koa = require('koa');
// 创建一个Koa对象表示web app本身:
const app = new …
-
Remove unused parts of the build steps (EX: node-dirs-to-copy.txt) and figure out if we can simply it at all
-
Is it possible to have a non-flat directory structure? I'm trying to put my functions under:
```
src
|---functions
|---hello.js
```
I've updated my `serverless.yml` configuration's h…
-
## 技术栈(依赖组件)
- node.js 版本>6.X
- npm || yarn
- express:Node.js服务
- react(15.6)升级16
- redux (状态管理)
- react-redux (连接react 和redux)
- react-router (react 路由)
- react-router-dom (react 路由4.X)
- …
Hibop updated
6 years ago
-
## async
ES2017 标准引入了 async 函数,使得异步操作变得更加方便。
在异步处理上,async 函数就是 Generator 函数的语法糖。
举个例子:
```js
// 使用 generator
var fetch = require('node-fetch');
var co = require('co');
function* gen(…
-
## 前言
最近這幾天重新學習了設計模式,剛好到了裝飾者模式 (Decorator pattern) 在網路上找尋JS的簡單範例時,發現 ES7(ECMAScript2016) 有 decorator 的語法糖~經過一番波折之後發現...... ES7(ECMAScript2016) 根本沒有規範 decorator.
**讓我娓娓道來**
## 什麼是裝飾者模式
先稍微介紹一下裝…
-
-
```javascript
console.log("script start");
async function async1() {
await async2();
console.log("async1 end");
}
async function async2() {
console.log("async2 end");
}
async1();
s…