代码空间


摘要(Abstract)

精益是对英文Lean的一种翻译,Lean的一般含义,是指事物的一种极端或一种倾向,是带有瘦弱、贫瘠、细小、干瘦、扁平、精确、精准含义的一个英文词汇。精益 外文名 Lean 定 义 事物的一种极端或一种倾向 用 途精益思想、精益企业、精益生产1、精益思想 精益思想是指运用多种现代管理方法和手段,以社会需求为依据,以充分发挥人的作用为根本,有效配置和合理使用资源,最大限度地为企业谋求经济效益的一种新型的经营管理理念。 2、精益企业 精益企业是精益生产沿产品价值流方向的扩大和延伸。 从价值流的概念可知,精益企业是一个企业群体,由若干个法律上相互独立和自主经营、但又同处于某类产品价值创造过程上下各环节,在生产、供应、销售等方面相互联系和相互依赖的不同公司或企业构成。其使命就是在对产品价值创造过程进行共同分析的基础上,集中致力于产品价值的创造活动。 3、精益生产 所谓精益生产,简言之,就是一种以满足用户需求为目标、力求降低成本、提高产品的质量、不断创新的资源节约型的生产方式。 3、精益管理 《管理精益》中所描述的一种方式:精益通过提高员工的水平来保证产品开发。在这个定义的基础上,这篇论文接下来解释了精益是怎样提高人员的水平的:方法就是解决问题。这一定义揭示了以下管理实践的美妙之处:仔细设计你的工作,让你能够清晰地看见所发生的问题(以及同时出现的学习机会),并在问题出现后以科学的方式解决。 [1]


主题(Topic)

项目(Project)
DmitriPopov/helpinatormanual typeclasses/leanpub davioooh/leanpub-manuscript-tools bitpressio/leanpub-starter zzamboni/leanpub-orb smusali/leanpub zzamboni/ox-leanpub zzamboni/emacs-org-leanpub EpocDotFr/leanpub-sync groundh0g/leanpub-jekyll openpolitics/leanpub-manifesto juaalta/Leanpub_Blog-Cosillas-Juansal juaalta/Leanpub_construccion-de-maquina-recreativa ellysh/video-game-bots-ru Then make sure `package.json` of your project ends with this block: ```js { // ... "eslintConfig": { "extends": "./node_modules/react-scripts/config/eslint.js" } } ``` Projects generated with `react-scripts@0.2.0` and higher should already have it. If you don’t need ESLint integration with your editor, you can safely delete those three lines from your `package.json`. Finally, you will need to install some packages *globally*: ```sh npm install -g eslint babel-eslint eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-flowtype ``` We recognize that this is suboptimal, but it is currently required due to the way we hide the ESLint dependency. The ESLint team is already [working on a solution to this](https://github.com/eslint/eslint/issues/3458) so this may become unnecessary in a couple of months. ## Installing a Dependency The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`: ``` npm install --save ``` ## Importing a Component This project setup supports ES6 modules thanks to Babel. While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead. For example: ### `Button.js` ```js import React, { Component } from 'react'; class Button extends Component { render() { // ... } } export default Button; // Don’t forget to use export default! ``` ### `DangerButton.js` ```js import React, { Component } from 'react'; import Button from './Button'; // Import a component from another file class DangerButton extends Component { render() { return