0.1.43 • Published 2 years ago

chansencode-lib v0.1.43

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Introduction

Component development environment.

View built on 'next.js', exports handled with 'rollup.js'

Installation


npm install

Run


npm run dev:        Starts dev env on 'localhost:3500'
npm run build:      Builds next static site to folder './out'
npm run build-lib:  Rollup compiles './components' to './dist'

Motivation & Manifest


This program is built by a junior front-end web dev for consumption in various applications ranging from cms to web based interfaces. It comprises both view, presentation, simple & advanced components. This library will be built into .tsx with time but is for now written in .js format.

'Component design' - manifest

All components shall:

  • K I S S
  • Be able to render monochromatically following currentColor convention
  • Documented clearly with example on lib.chansen.design

List of components


nametype
Buttonpresentation
Hamburgerpresentation
Logopresentation

Explicit details and preview examples can be found on : https://lib.chansen.design

Folder Structure


Exporting Components:

//Target for rollup

file: '~/components/index.js';

export * from './Foo';
export * from './Bar';
file: '~/components/Foo/index.js';

export * from './Foo';
file: '~/components/Foo/Foo.js';

export const Foo = () => {
  return (
    <div>
      <h4>foo</h4>
    </div>
  );
};

Importing Components

import { Foo, Bar } from '~/components';

//or

import { Foo, Bar } from 'chansencode-lib';
0.1.30

2 years ago

0.1.31

2 years ago

0.1.32

2 years ago

0.1.33

2 years ago

0.1.34

2 years ago

0.1.35

2 years ago

0.1.36

2 years ago

0.1.37

2 years ago

0.1.27

2 years ago

0.1.28

2 years ago

0.1.29

2 years ago

0.1.41

2 years ago

0.1.42

2 years ago

0.1.43

2 years ago

0.1.40

2 years ago

0.1.38

2 years ago

0.1.39

2 years ago

0.1.10

3 years ago

0.1.11

3 years ago

0.1.12

3 years ago

0.1.13

3 years ago

0.1.14

3 years ago

0.1.15

3 years ago

0.1.20

2 years ago

0.1.21

2 years ago

0.1.22

2 years ago

0.1.23

2 years ago

0.1.24

2 years ago

0.1.25

2 years ago

0.1.16

3 years ago

0.1.8

3 years ago

0.1.17

2 years ago

0.1.7

3 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.9

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago