We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60ff800 commit 4d23fceCopy full SHA for 4d23fce
.dockerignore
@@ -0,0 +1,3 @@
1
+node_modules/
2
+.idea
3
+.DS_Store
.gitignore
README.md
@@ -0,0 +1,7 @@
+# image-holder
+
+图片占位服务
4
5
+## Usage
6
7
+`http://xx.com/200x200`
index.js
package.json
@@ -0,0 +1,22 @@
+{
+ "name": "image-holder",
+ "version": "1.0.0",
+ "description": "图片占位服务",
+ "main": "index.js",
+ "scripts": {
+ "start": "nodemon index.js"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "http://gitlab.shinemo.com/chenf/image-holder.git"
12
13
+ "keywords": [
14
+ "图片占位"
15
+ ],
16
+ "author": "weekeight",
17
+ "license": "MIT",
18
+ "dependencies": {
19
+ "express": "^4.13.4",
20
+ "nodemon": "^1.9.0"
21
+ }
22
+}
0 commit comments