# @feizheng/next-js-core2

> A javascript OOP toolkit for mobile.

Latest version **2.6.0** (published 2020-07-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @feizheng/next-js-core2
pnpm add @feizheng/next-js-core2
yarn add @feizheng/next-js-core2
bun add @feizheng/next-js-core2
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 2.6.0 |
| Published | 2020-07-07 |
| First published | 2019-11-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 20 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | afei |
| Maintainers | afeiship |
| Keywords | oop, umd, next, mobile |

## Links

- npm: https://www.npmjs.com/package/@feizheng/next-js-core2
- Repository: https://github.com/afeiship/next-js-core2
- Homepage: https://github.com/afeiship/next-js-core2#readme
- Issues: https://github.com/afeiship/next-js-core2/issues
- npm.io page: https://npm.io/package/@feizheng/next-js-core2

## Alternatives

- [@mdxeditor/editor](https://npm.io/package/@mdxeditor/editor.md) — 962.4K weekly downloads
- [mmdb-lib](https://npm.io/package/mmdb-lib.md) — 680.9K weekly downloads
- [playcanvas](https://npm.io/package/playcanvas.md) — 36.2K weekly downloads
- [@glw907/cairn-cms](https://npm.io/package/@glw907/cairn-cms.md) — 967 weekly downloads
- [markdown-to-confluence](https://npm.io/package/markdown-to-confluence.md) — 103 weekly downloads

## Recent versions

- 2.6.0 (latest) — 2020-07-07
- 2.5.0 — 2020-05-25
- 2.4.4 — 2020-03-28
- 2.4.3 — 2020-03-24
- 2.4.2 — 2020-02-21
- 2.4.1 — 2020-02-16
- 2.4.0 — 2020-01-28
- 2.3.4 — 2020-01-27
- 2.3.3 — 2020-01-27
- 2.3.2 — 2020-01-27
- 2.3.1 — 2020-01-27
- 2.3.0 — 2020-01-27
- 2.2.2 — 2020-01-06
- 2.2.1 — 2020-01-05
- 2.2.0 — 2020-01-05
- … 9 more at https://npm.io/package/@feizheng/next-js-core2/versions

## README

# next-js-core2
> A javascript OOP toolkit for mobile.

## installation
```bash
# window.nx
npm install --save @feizheng/next-js-core2@1.6.5

# inner context
npm install --save @feizheng/next-js-core2
```

## node
```js
import nx from '@feizheng/next-js-core2';

const MyClass = nx.declare({
  statics:{
    init: function(){
      console.log('hello next!')
    }
  }
})
```

## browser
```html
<script type="text/javascript" src="//unpkg.com/@feizheng/next-js-core2@2.0.5/dist/next-js-core2.min.js"></script>
<script type="text/javascript">
(function (nx, global) {
  nx.declare('myApp', {
    statics: {
      init: function () {
        alert('hello next!');
      }
    }
  });
}(nx, nx.GLOBAL));
</script>
```

---
_Source: https://npm.io/package/@feizheng/next-js-core2 · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
