From f1866cc3bcd87f68958e64a5dadab1361cb72eff Mon Sep 17 00:00:00 2001 From: josdejong Date: Fri, 15 Feb 2013 21:35:33 +0100 Subject: [PATCH] Project initialized (but yet empty) --- .gitignore | 1 + README.md | 11 +++++++++-- math2.js | 29 +++++++++++++++++++++++++++++ package.json | 29 +++++++++++++++++++++++++++++ 4 files changed, 68 insertions(+), 2 deletions(-) create mode 100644 .gitignore create mode 100644 math2.js create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..485dee64b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/README.md b/README.md index 26958eb9b..0ddb99840 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ -math2 +Math2 ===== -An advanced Javascript math library \ No newline at end of file +Math2 is an advanced Javascript math library. +It is a superset of the standard Math library. Powerful and easy to use. + +Math2 supports real and complex values, units, strings, and matrices. +It contains an extensive set of built-in functions, +and comes with a flexible expression parser. + +Coming soon... diff --git a/math2.js b/math2.js new file mode 100644 index 000000000..0e97a9ea6 --- /dev/null +++ b/math2.js @@ -0,0 +1,29 @@ +/*! + * math2.js + * An advanced Javascript math library + * + * @license + * Licensed under the Apache License, Version 2.0 (the "License"); you may not + * use this file except in compliance with the License. You may obtain a copy + * of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + * License for the specific language governing permissions and limitations under + * the License. + * + * Copyright (c) 2013 Jos de Jong + * + * @author Jos de Jong, + * @version 0.0.1 + * @date 2013-02-15 + */ + +var math2 = {}; + +console.log('Sorry, the library is still empty. Coming soon...'); + +exports = module.exports = math2; diff --git a/package.json b/package.json new file mode 100644 index 000000000..b7c608f69 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "math2", + "version": "0.0.1", + "description": "An advanced Javascript math library", + "author": "Jos de Jong ", + "contributors": [ + { + "name": "Jos de Jong", + "email": "wjosdejong@gmail.com" + } + ], + "repository": { + "type": "git", + "url": "git://github.com/josdejong/math2.git" + }, + "keywords": [ + "math", + "mathematics", + "functions", + "parser", + "expression" + ], + "dependencies": {}, + "devDependencies": {}, + "main": "math2.js", + "engines": { + "node": "*" + } +}