objs-core 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/objs.1.0.js.zip +0 -0
- package/objs.1.0.min.js.zip +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Objs
|
|
2
|
+
 
|
|
2
3
|
> Fast and simple library to increase developing speed by samples and state control, auto-tests, cache and other. You can develop new features with Objs without rewriting anything. Examples and full documentation are here: [Full Documentation](https://fous.name/objs) (sandbox and free samples are coming soon)
|
|
3
4
|
|
|
4
5
|
|
|
@@ -93,7 +94,10 @@ const timerStates = {
|
|
|
93
94
|
The last thing is to create and append element on the page. To do this - init states, render object and start timer... And also - append it.
|
|
94
95
|
```
|
|
95
96
|
// create and start timer
|
|
96
|
-
const timer = o.init(timerStates)
|
|
97
|
+
const timer = o.init(timerStates)
|
|
98
|
+
.render()
|
|
99
|
+
.start()
|
|
100
|
+
.appendInside('#simpleTimer');
|
|
97
101
|
|
|
98
102
|
// stop timer
|
|
99
103
|
timer.stop();
|
package/objs.1.0.js.zip
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "objs-core",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.7",
|
|
4
|
+
"description": "Encrease coding speed, by lightweight samples, states control, caching and auto tests. Easy to use: just split design into samples and give them data to render and action. Also Objs-core can create samples from server rendered DOM and more.",
|
|
5
5
|
"homepage": "https://fous.name/objs/",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|