From 7073b51853b65aa713be24bbbcd624b769d49262 Mon Sep 17 00:00:00 2001 From: mayiming <1627832236@qq.com> Date: Sat, 15 Nov 2025 14:15:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 8 ++++++++ .idea/workspace.xml | 4 ++++ index.js | 1 + package.json | 10 ++++++++++ 4 files changed, 23 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/workspace.xml create mode 100644 index.js create mode 100644 package.json diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..35410ca --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml +# 基于编辑器的 HTTP 客户端请求 +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..1ac928b --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,4 @@ + + + {} + \ No newline at end of file diff --git a/index.js b/index.js new file mode 100644 index 0000000..04bf26e --- /dev/null +++ b/index.js @@ -0,0 +1 @@ +console.log('Happy developing ✨') diff --git a/package.json b/package.json new file mode 100644 index 0000000..c3c6d9f --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "name": "javascript_learn", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "private": true +}