# stack-temp

> Create A FullStack App Template

Latest version **1.3.9** (published 2022-10-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install stack-temp
pnpm add stack-temp
yarn add stack-temp
bun add stack-temp
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.9 |
| Published | 2022-10-26 |
| First published | 2022-10-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 9.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | restre-z |
| Maintainers | restre-z |
| Keywords | mern, mevn, fullstack |

## Links

- npm: https://www.npmjs.com/package/stack-temp
- npm.io page: https://npm.io/package/stack-temp

## Dependencies (1)

- [typescript](https://npm.io/package/typescript.md) ^4.8.4

## Recent versions

- 1.3.9 (latest) — 2022-10-26
- 1.3.5 — 2022-10-22
- 1.2.5 — 2022-10-18
- 1.2.0 — 2022-10-16
- 1.1.0 — 2022-10-15

## README

Create the architecture of a fullstack app easier.

```js
const stack = require('stack-temp').stack;

var s = new stack();
s.basic(); // creates a basic HTML, JS and CSS structure
s.use(FullStacks.MERN); // downloads the npm packages for the stack
s.deploy("./", DeployApps.vercel); // deploy the current dir w/ vercel
```

Automaticly Test websites using <a href="https://www.npmjs.com/package/selenium-webdriver"><code>selenium-webdriver</code></a>

```js
const stack = require('stack-temp').stack;

var s = new stack();
s.test("https://www.google.com/ncr", (driver) => {
    driver.findElement(By.name('q')).sendKeys('webdriver', Key.RETURN);
}
```

Run JS Files:

```js
var s = new stack();

s.findJSFiles((files) => { 
    s.runJSFile(files[0], true); // Async creates a node process, non-async uses eval()
})
```

---
_Source: https://npm.io/package/stack-temp · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
