diff --git a/monaco-editor-samples/.gitignore b/monaco-editor-samples/.gitignore
new file mode 100644
index 00000000..4574414d
--- /dev/null
+++ b/monaco-editor-samples/.gitignore
@@ -0,0 +1,2 @@
+/node_modules/
+**/node_modules/
\ No newline at end of file
diff --git a/monaco-editor-samples/.husky/pre-commit b/monaco-editor-samples/.husky/pre-commit
new file mode 100644
index 00000000..9129110b
--- /dev/null
+++ b/monaco-editor-samples/.husky/pre-commit
@@ -0,0 +1,4 @@
+#!/bin/sh
+. "$(dirname "$0")/_/husky.sh"
+
+npm run pretty-quick
diff --git a/monaco-editor-samples/.npmignore b/monaco-editor-samples/.npmignore
new file mode 100644
index 00000000..01e45a5d
--- /dev/null
+++ b/monaco-editor-samples/.npmignore
@@ -0,0 +1,2 @@
+/.gitignore
+/.vscode/
diff --git a/monaco-editor-samples/.prettierignore b/monaco-editor-samples/.prettierignore
new file mode 100644
index 00000000..b483bf92
--- /dev/null
+++ b/monaco-editor-samples/.prettierignore
@@ -0,0 +1,7 @@
+/browser-esm-parcel/.cache/
+/browser-esm-parcel/dist/
+/browser-esm-webpack/dist/*.js
+/browser-esm-webpack-monaco-plugin/dist/*.js
+/browser-esm-webpack-small/dist/*.js
+/browser-esm-webpack-typescript/dist/*.js
+/browser-esm-webpack-typescript-react/dist/*.js
diff --git a/monaco-editor-samples/.prettierrc b/monaco-editor-samples/.prettierrc
new file mode 100644
index 00000000..c12f08c5
--- /dev/null
+++ b/monaco-editor-samples/.prettierrc
@@ -0,0 +1,8 @@
+{
+ "arrowParens": "always",
+ "singleQuote": true,
+ "trailingComma": "none",
+ "semi": true,
+ "useTabs": true,
+ "printWidth": 100
+}
diff --git a/monaco-editor-samples/.vscode/settings.json b/monaco-editor-samples/.vscode/settings.json
new file mode 100644
index 00000000..2b77478b
--- /dev/null
+++ b/monaco-editor-samples/.vscode/settings.json
@@ -0,0 +1,6 @@
+// Place your settings in this file to overwrite default and user settings.
+{
+ "files.trimTrailingWhitespace": true,
+ "editor.tabSize": 4,
+ "editor.insertSpaces": false
+}
diff --git a/monaco-editor-samples/LICENSE.md b/monaco-editor-samples/LICENSE.md
new file mode 100644
index 00000000..9f66f02b
--- /dev/null
+++ b/monaco-editor-samples/LICENSE.md
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2016 Microsoft Corporation
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/monaco-editor-samples/README.md b/monaco-editor-samples/README.md
new file mode 100644
index 00000000..17225f87
--- /dev/null
+++ b/monaco-editor-samples/README.md
@@ -0,0 +1,39 @@
+# Monaco Editor Samples
+
+Standalone HTML samples showing how to integrate the Monaco Editor.
+
+## Running
+
+```bash
+git clone https://github.com/Microsoft/monaco-editor-samples.git
+cd monaco-editor-samples
+npm install .
+npm run simpleserver
+```
+
+Go to localhost:8888 and explore the samples!
+
+## Issues
+
+Please file issues concering `monaco-editor-samples` in the [`monaco-editor` repository](https://github.com/Microsoft/monaco-editor/issues).
+
+## Loading variations
+
+- `browser-amd-editor`: running in a browser using `AMD` lazy loading.
+- `browser-script-editor`: running in a browser using `AMD` synchronous loading via `
+
+
+