Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial upload #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
client/dist
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
lib
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"semi": false
}
55 changes: 54 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,54 @@
# simple-script-loading
<img height="80" width="304" alt="Sprout.ai Engineering logo" src="https://github.com/sprout-ai/simple-script-loading/assets/10632532/cb7ff795-30cd-4a14-840d-7fb3c7591594" />

# Simple Script Loading

A simple code and script loading.

## Installation

```bash
npm install @sproutai/simple-script-loading
```

## Usage

### Loading an external script

By default, supplying a URL to `src` will add <script> tag to the document's head.

```js
import simpleScriptLoading from "@sproutai/simple-script-loading"

simpleScriptLoading({
id: "script-id",
src: "https://example.com/script.js"
}).then((node) => {
// returns the script node
console.log(node)
console.log("script loaded")
}).catch((error) => {
console.error(error)
})
```

### Inserting a script tag with JavaScript code

```js
import simpleScriptLoading from "@sproutai/simple-script-loading"

simpleScriptLoading({
id: "script-id",
code: "console.log('Hello, World!')"
})
```

### Options

```js
const options = {
attrs: {}, // object, attributes to add to the script tag
code: undefined, // string, JavaScript code to insert
src: '', // string, URL of the script to load
body: false, // boolean, insert the script tag in the body
}
```
11 changes: 11 additions & 0 deletions client/app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import simpleScriptLoading from "../src"

declare global {
interface Window {
simpleScriptLoading: typeof simpleScriptLoading
}
}

window.simpleScriptLoading = simpleScriptLoading

export {}
12 changes: 12 additions & 0 deletions client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Simple Script Loading</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="app.ts"></script>
</body>
</html>
5 changes: 5 additions & 0 deletions client/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function foo() {
return "bar"
}

window.foo = foo
Loading