Skip to content

Commit 73748a9

Browse files
committed
feat: support cjs and esm both by tshy
BREAKING CHANGE: drop Node.js < 18.19.0 support part of eggjs/egg#3644 eggjs/egg#5257
1 parent 64616a9 commit 73748a9

19 files changed

+224
-282
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test/fixtures
2+
coverage

.eslintrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": [
3+
"eslint-config-egg/typescript",
4+
"eslint-config-egg/lib/rules/enforce-node-prefix"
5+
]
6+
}

.github/workflows/nodejs.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
Job:
11+
name: Node.js
12+
uses: node-modules/github-actions/.github/workflows/node-test.yml@master
13+
with:
14+
os: 'macos-latest'
15+
version: '18.19.0, 20, 22'
16+
secrets:
17+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/pkg.pr.new.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish Any Commit
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- name: Checkout code
10+
uses: actions/checkout@v4
11+
12+
- run: corepack enable
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 20
16+
17+
- name: Install dependencies
18+
run: npm install
19+
20+
- name: Build
21+
run: npm run prepublishOnly --if-present
22+
23+
- run: npx pkg-pr-new publish

.github/workflows/release.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
release:
9+
name: Node.js
10+
uses: node-modules/github-actions/.github/workflows/node-release.yml@master
11+
secrets:
12+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
13+
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}

.gitignore

+9-14
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
coverage.html
2-
*.seed
3-
*.log
4-
*.csv
5-
*.dat
6-
*.out
7-
*.pid
8-
*.gz
9-
10-
pids
11-
logs
12-
results
13-
14-
node_modules
1+
logs/
152
npm-debug.log
3+
node_modules/
164
coverage/
5+
test/fixtures/**/run
6+
.DS_Store
7+
.tshy*
8+
.eslintcache
9+
dist
10+
package-lock.json
11+
.package-lock.json

.jshintignore

-4
This file was deleted.

.jshintrc

-95
This file was deleted.

.npmignore

-8
This file was deleted.

.travis.yml

-11
This file was deleted.

AUTHORS

-6
This file was deleted.

History.md CHANGELOG.md

File renamed without changes.

README.md

+17-11
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,38 @@
11
# jsonp-body
22

33
[![NPM version][npm-image]][npm-url]
4-
[![build status][travis-image]][travis-url]
5-
[![Test coverage][coveralls-image]][coveralls-url]
4+
[![Node.js CI](https://github.com/node-modules/jsonp-body/actions/workflows/nodejs.yml/badge.svg)](https://github.com/node-modules/jsonp-body/actions/workflows/nodejs.yml)
5+
[![Test coverage][codecov-image]][codecov-url]
6+
[![Known Vulnerabilities][snyk-image]][snyk-url]
7+
[![npm download][download-image]][download-url]
8+
[![Node.js Version](https://img.shields.io/node/v/jsonp-body.svg?style=flat)](https://nodejs.org/en/download/)
9+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com)
610

711
[npm-image]: https://img.shields.io/npm/v/jsonp-body.svg?style=flat-square
812
[npm-url]: https://npmjs.org/package/jsonp-body
9-
[travis-image]: https://img.shields.io/travis/node-modules/jsonp-body.svg?style=flat-square
10-
[travis-url]: https://travis-ci.org/node-modules/jsonp-body
11-
[coveralls-image]: https://img.shields.io/coveralls/node-modules/jsonp-body.svg?style=flat-square
12-
[coveralls-url]: https://coveralls.io/r/node-modules/jsonp-body?branch=master
13+
[codecov-image]: https://img.shields.io/codecov/c/github/node-modules/jsonp-body.svg?style=flat-square
14+
[codecov-url]: https://codecov.io/github/node-modules/jsonp-body?branch=master
15+
[snyk-image]: https://snyk.io/test/npm/jsonp-body/badge.svg?style=flat-square
16+
[snyk-url]: https://snyk.io/test/npm/jsonp-body
17+
[download-image]: https://img.shields.io/npm/dm/jsonp-body.svg?style=flat-square
18+
[download-url]: https://npmjs.org/package/jsonp-body
1319

1420
Helper to create more safe jsonp response body for [koa](http://koajs.com/) and other web framework.
1521

1622
## Install
1723

1824
```bash
19-
$ npm install jsonp-body --save
25+
npm install jsonp-body --save
2026
```
2127

2228
## Usage
2329

2430
```js
25-
var koa = require('koa');
26-
var jsonp = require('jsonp-body');
31+
const koa = require('koa');
32+
const { jsonp } = require('jsonp-body');
2733

2834
var app = koa();
29-
app.use(function* () {
35+
app.use(async function () {
3036
this.set('X-Content-Type-Options', 'nosniff');
3137
if (this.query.callback) {
3238
this.set('Content-Type', 'text/javascript');
@@ -39,7 +45,7 @@ app.use(function* () {
3945

4046
## API Reference
4147

42-
### #jsonp(obj, callback, options)
48+
### `jsonp(obj, callback, options)`
4349

4450
Get `obj` jsonp string response with `callback`.
4551

index.d.ts

-18
This file was deleted.

package.json

+57-25
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,14 @@
11
{
22
"name": "jsonp-body",
33
"version": "1.1.0",
4-
"description": "Helper to create more safe jsonp response body for koa and other web framework.",
5-
"main": "index.js",
6-
"types": "index.d.ts",
7-
"scripts": {
8-
"test": "mocha test/*.test.js",
9-
"test-cov": "istanbul cover _mocha -- test/*.test.js"
10-
},
11-
"dependencies": {
12-
13-
},
14-
"devDependencies": {
15-
"autod": "*",
16-
"contributors": "*",
17-
"istanbul": "*",
18-
"jshint": "*",
19-
"mocha": "*",
20-
"should": "7"
21-
},
4+
"description": "Helper to create more safe jsonp response body for koa and other web framework",
225
"homepage": "https://github.com/node-modules/jsonp-body",
236
"repository": {
247
"type": "git",
25-
"url": "git://github.com/node-modules/jsonp-body.git",
26-
"web": "https://github.com/node-modules/jsonp-body"
8+
"url": "git://github.com/node-modules/jsonp-body.git"
279
},
2810
"bugs": {
29-
"url": "https://github.com/node-modules/jsonp-body/issues",
30-
"email": "[email protected]"
11+
"url": "https://github.com/node-modules/jsonp-body/issues"
3112
},
3213
"keywords": [
3314
"jsonp",
@@ -36,9 +17,60 @@
3617
"CVE-2014-4671",
3718
"abusing-jsonp-with-rosetta-flash"
3819
],
20+
"author": "fengmk2 <[email protected]> (https://github.com/fengmk2)",
21+
"license": "MIT",
3922
"engines": {
40-
"node": ">= 0.10.0"
23+
"node": ">= 18.19.0"
4124
},
42-
"author": "fengmk2 <[email protected]> (https://github.com/fengmk2)",
43-
"license": "MIT"
25+
"dependencies": {},
26+
"devDependencies": {
27+
"@arethetypeswrong/cli": "^0.17.1",
28+
"@eggjs/tsconfig": "1",
29+
"@types/node": "22",
30+
"@types/mocha": "10",
31+
"@eggjs/bin": "7",
32+
"eslint": "8",
33+
"eslint-config-egg": "14",
34+
"rimraf": "6",
35+
"tshy": "3",
36+
"tshy-after": "1",
37+
"typescript": "5"
38+
},
39+
"scripts": {
40+
"lint": "eslint --cache src test --ext .ts",
41+
"pretest": "npm run clean && npm run lint -- --fix",
42+
"test": "egg-bin test",
43+
"preci": "npm run clean && npm run lint",
44+
"ci": "egg-bin cov",
45+
"postci": "npm run prepublishOnly && npm run clean",
46+
"clean": "rimraf dist",
47+
"prepublishOnly": "tshy && tshy-after && attw --pack"
48+
},
49+
"type": "module",
50+
"tshy": {
51+
"exports": {
52+
".": "./src/index.ts",
53+
"./package.json": "./package.json"
54+
}
55+
},
56+
"exports": {
57+
".": {
58+
"import": {
59+
"types": "./dist/esm/index.d.ts",
60+
"default": "./dist/esm/index.js"
61+
},
62+
"require": {
63+
"types": "./dist/commonjs/index.d.ts",
64+
"default": "./dist/commonjs/index.js"
65+
}
66+
},
67+
"./package.json": "./package.json"
68+
},
69+
"files": [
70+
"dist",
71+
"src"
72+
],
73+
"types": "./dist/commonjs/index.d.ts",
74+
"main": "./dist/commonjs/index.js",
75+
"module": "./dist/esm/index.js"
4476
}

0 commit comments

Comments
 (0)