You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 3 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631
  1. # node-sass
  2. #### Supported Node.js versions vary by release, please consult the [releases page](https://github.com/sass/node-sass/releases). Below is a quick guide for minimum support:
  3. NodeJS | Minimum node-sass version | Node Module
  4. --------|--------------------------|------------
  5. Node 14 | 4.14+ | 83
  6. Node 13 | 4.13+ | 79
  7. Node 12 | 4.12+ | 72
  8. Node 11 | 4.10+ | 67
  9. Node 10 | 4.9+ | 64
  10. Node 8 | 4.5.3+ | 57
  11. <table>
  12. <tr>
  13. <td>
  14. <img width="77px" alt="Sass logo" src="https://rawgit.com/sass/node-sass/master/media/logo.svg" />
  15. </td>
  16. <td valign="bottom" align="right">
  17. <a href="https://www.npmjs.com/package/node-sass">
  18. <img width="100%" src="https://nodei.co/npm/node-sass.png?downloads=true&downloadRank=true&stars=true">
  19. </a>
  20. </td>
  21. </tr>
  22. </table>
  23. [![Build Status](https://travis-ci.org/sass/node-sass.svg?branch=master&style=flat)](https://travis-ci.org/sass/node-sass)
  24. [![Build status](https://ci.appveyor.com/api/projects/status/22mjbk59kvd55m9y/branch/master?svg=true)](https://ci.appveyor.com/project/sass/node-sass/branch/master)
  25. [![npm version](https://badge.fury.io/js/node-sass.svg)](http://badge.fury.io/js/node-sass)
  26. [![Dependency Status](https://david-dm.org/sass/node-sass.svg?theme=shields.io)](https://david-dm.org/sass/node-sass)
  27. [![devDependency Status](https://david-dm.org/sass/node-sass/dev-status.svg?theme=shields.io)](https://david-dm.org/sass/node-sass#info=devDependencies)
  28. [![Coverage Status](https://coveralls.io/repos/sass/node-sass/badge.svg?branch=master)](https://coveralls.io/r/sass/node-sass?branch=master)
  29. [![Inline docs](http://inch-ci.org/github/sass/node-sass.svg?branch=master)](http://inch-ci.org/github/sass/node-sass)
  30. [![Join us in Slack](https://libsass-slack.herokuapp.com/badge.svg)](https://libsass-slack.herokuapp.com/)
  31. Node-sass is a library that provides binding for Node.js to [LibSass], the C version of the popular stylesheet preprocessor, Sass.
  32. It allows you to natively compile .scss files to css at incredible speed and automatically via a connect middleware.
  33. Find it on npm: <https://www.npmjs.com/package/node-sass>
  34. Follow @nodesass on twitter for release updates: <https://twitter.com/nodesass>
  35. ## Install
  36. ```shell
  37. npm install node-sass
  38. ```
  39. Some users have reported issues installing on Ubuntu due to `node` being registered to another package. [Follow the official NodeJS docs](https://github.com/nodesource/distributions/blob/master/README.md#debinstall) to install NodeJS so that `#!/usr/bin/env node` correctly resolves.
  40. Compiling on Windows machines requires the [node-gyp prerequisites](https://github.com/nodejs/node-gyp#on-windows).
  41. Are you seeing the following error? Check out our [Troubleshooting guide](https://github.com/sass/node-sass/blob/master/TROUBLESHOOTING.md#installing-node-sass-4x-with-node--4).**
  42. ```
  43. SyntaxError: Use of const in strict mode.
  44. ```
  45. **Having installation troubles? Check out our [Troubleshooting guide](https://github.com/sass/node-sass/blob/master/TROUBLESHOOTING.md).**
  46. ### Install from mirror in China
  47. ```shell
  48. npm install -g mirror-config-china --registry=http://registry.npm.taobao.org
  49. npm install node-sass
  50. ```
  51. ## Usage
  52. ```javascript
  53. var sass = require('node-sass');
  54. sass.render({
  55. file: scss_filename,
  56. [, options..]
  57. }, function(err, result) { /*...*/ });
  58. // OR
  59. var result = sass.renderSync({
  60. data: scss_content
  61. [, options..]
  62. });
  63. ```
  64. ## Options
  65. ### file
  66. * Type: `String`
  67. * Default: `null`
  68. **Special**: `file` or `data` must be specified
  69. Path to a file for [LibSass] to compile.
  70. ### data
  71. * Type: `String`
  72. * Default: `null`
  73. **Special**: `file` or `data` must be specified
  74. A string to pass to [LibSass] to compile. It is recommended that you use `includePaths` in conjunction with this so that [LibSass] can find files when using the `@import` directive.
  75. ### importer (>= v2.0.0) - _experimental_
  76. **This is an experimental LibSass feature. Use with caution.**
  77. * Type: `Function | Function[]` signature `function(url, prev, done)`
  78. * Default: `undefined`
  79. Function Parameters and Information:
  80. * `url (String)` - the path in import **as-is**, which [LibSass] encountered
  81. * `prev (String)` - the previously resolved path
  82. * `done (Function)` - a callback function to invoke on async completion, takes an object literal containing
  83. * `file (String)` - an alternate path for [LibSass] to use **OR**
  84. * `contents (String)` - the imported contents (for example, read from memory or the file system)
  85. Handles when [LibSass] encounters the `@import` directive. A custom importer allows extension of the [LibSass] engine in both a synchronous and asynchronous manner. In both cases, the goal is to either `return` or call `done()` with an object literal. Depending on the value of the object literal, one of two things will happen.
  86. When returning or calling `done()` with `{ file: "String" }`, the new file path will be assumed for the `@import`. It's recommended to be mindful of the value of `prev` in instances where relative path resolution may be required.
  87. When returning or calling `done()` with `{ contents: "String" }`, the string value will be used as if the file was read in through an external source.
  88. Starting from v3.0.0:
  89. * `this` refers to a contextual scope for the immediate run of `sass.render` or `sass.renderSync`
  90. * importers can return error and LibSass will emit that error in response. For instance:
  91. ```javascript
  92. done(new Error('doesn\'t exist!'));
  93. // or return synchronously
  94. return new Error('nothing to do here');
  95. ```
  96. * importer can be an array of functions, which will be called by LibSass in the order of their occurrence in array. This helps user specify special importer for particular kind of path (filesystem, http). If an importer does not want to handle a particular path, it should return `null`. See [functions section](#functions--v300---experimental) for more details on Sass types.
  97. ### functions (>= v3.0.0) - _experimental_
  98. **This is an experimental LibSass feature. Use with caution.**
  99. `functions` is an `Object` that holds a collection of custom functions that may be invoked by the sass files being compiled. They may take zero or more input parameters and must return a value either synchronously (`return ...;`) or asynchronously (`done();`). Those parameters will be instances of one of the constructors contained in the `require('node-sass').types` hash. The return value must be of one of these types as well. See the list of available types below:
  100. #### types.Number(value [, unit = ""])
  101. * `getValue()`/ `setValue(value)` : gets / sets the numerical portion of the number
  102. * `getUnit()` / `setUnit(unit)` : gets / sets the unit portion of the number
  103. #### types.String(value)
  104. * `getValue()` / `setValue(value)` : gets / sets the enclosed string
  105. #### types.Color(r, g, b [, a = 1.0]) or types.Color(argb)
  106. * `getR()` / `setR(value)` : red component (integer from `0` to `255`)
  107. * `getG()` / `setG(value)` : green component (integer from `0` to `255`)
  108. * `getB()` / `setB(value)` : blue component (integer from `0` to `255`)
  109. * `getA()` / `setA(value)` : alpha component (number from `0` to `1.0`)
  110. Example:
  111. ```javascript
  112. var Color = require('node-sass').types.Color,
  113. c1 = new Color(255, 0, 0),
  114. c2 = new Color(0xff0088cc);
  115. ```
  116. #### types.Boolean(value)
  117. * `getValue()` : gets the enclosed boolean
  118. * `types.Boolean.TRUE` : Singleton instance of `types.Boolean` that holds "true"
  119. * `types.Boolean.FALSE` : Singleton instance of `types.Boolean` that holds "false"
  120. #### types.List(length [, commaSeparator = true])
  121. * `getValue(index)` / `setValue(index, value)` : `value` must itself be an instance of one of the constructors in `sass.types`.
  122. * `getSeparator()` / `setSeparator(isComma)` : whether to use commas as a separator
  123. * `getLength()`
  124. #### types.Map(length)
  125. * `getKey(index)` / `setKey(index, value)`
  126. * `getValue(index)` / `setValue(index, value)`
  127. * `getLength()`
  128. #### types.Null()
  129. * `types.Null.NULL` : Singleton instance of `types.Null`.
  130. #### Example
  131. ```javascript
  132. sass.renderSync({
  133. data: '#{headings(2,5)} { color: #08c; }',
  134. functions: {
  135. 'headings($from: 0, $to: 6)': function(from, to) {
  136. var i, f = from.getValue(), t = to.getValue(),
  137. list = new sass.types.List(t - f + 1);
  138. for (i = f; i <= t; i++) {
  139. list.setValue(i - f, new sass.types.String('h' + i));
  140. }
  141. return list;
  142. }
  143. }
  144. });
  145. ```
  146. ### includePaths
  147. * Type: `Array<String>`
  148. * Default: `[]`
  149. An array of paths that [LibSass] can look in to attempt to resolve your `@import` declarations. When using `data`, it is recommended that you use this.
  150. ### indentedSyntax
  151. * Type: `Boolean`
  152. * Default: `false`
  153. `true` values enable [Sass Indented Syntax](https://sass-lang.com/documentation/file.INDENTED_SYNTAX.html) for parsing the data string or file.
  154. __Note:__ node-sass/libsass will compile a mixed library of scss and indented syntax (.sass) files with the Default setting (false) as long as .sass and .scss extensions are used in filenames.
  155. ### indentType (>= v3.0.0)
  156. * Type: `String`
  157. * Default: `space`
  158. Used to determine whether to use space or tab character for indentation.
  159. ### indentWidth (>= v3.0.0)
  160. * Type: `Number`
  161. * Default: `2`
  162. * Maximum: `10`
  163. Used to determine the number of spaces or tabs to be used for indentation.
  164. ### linefeed (>= v3.0.0)
  165. * Type: `String`
  166. * Default: `lf`
  167. Used to determine whether to use `cr`, `crlf`, `lf` or `lfcr` sequence for line break.
  168. ### omitSourceMapUrl
  169. * Type: `Boolean`
  170. * Default: `false`
  171. **Special:** When using this, you should also specify `outFile` to avoid unexpected behavior.
  172. `true` values disable the inclusion of source map information in the output file.
  173. ### outFile
  174. * Type: `String | null`
  175. * Default: `null`
  176. **Special:** Required when `sourceMap` is a truthy value
  177. Specify the intended location of the output file. Strongly recommended when outputting source maps so that they can properly refer back to their intended files.
  178. **Attention** enabling this option will **not** write the file on disk for you, it's for internal reference purpose only (to generate the map for example).
  179. Example on how to write it on the disk
  180. ```javascript
  181. sass.render({
  182. ...
  183. outFile: yourPathTotheFile,
  184. }, function(error, result) { // node-style callback from v3.0.0 onwards
  185. if(!error){
  186. // No errors during the compilation, write this result on the disk
  187. fs.writeFile(yourPathTotheFile, result.css, function(err){
  188. if(!err){
  189. //file written on disk
  190. }
  191. });
  192. }
  193. });
  194. });
  195. ```
  196. ### outputStyle
  197. * Type: `String`
  198. * Default: `nested`
  199. * Values: `nested`, `expanded`, `compact`, `compressed`
  200. Determines the output format of the final CSS style.
  201. ### precision
  202. * Type: `Integer`
  203. * Default: `5`
  204. Used to determine how many digits after the decimal will be allowed. For instance, if you had a decimal number of `1.23456789` and a precision of `5`, the result will be `1.23457` in the final CSS.
  205. ### sourceComments
  206. * Type: `Boolean`
  207. * Default: `false`
  208. `true` Enables the line number and file where a selector is defined to be emitted into the compiled CSS as a comment. Useful for debugging, especially when using imports and mixins.
  209. ### sourceMap
  210. * Type: `Boolean | String | undefined`
  211. * Default: `undefined`
  212. Enables source map generation during `render` and `renderSync`.
  213. When `sourceMap === true`, the value of `outFile` is used as the target output location for the source map with the suffix `.map` appended. If no `outFile` is set, `sourceMap` parameter is ignored.
  214. When `typeof sourceMap === "string"`, the value of `sourceMap` will be used as the writing location for the file.
  215. ### sourceMapContents
  216. * Type: `Boolean`
  217. * Default: `false`
  218. `true` includes the `contents` in the source map information
  219. ### sourceMapEmbed
  220. * Type: `Boolean`
  221. * Default: `false`
  222. `true` embeds the source map as a data URI
  223. ### sourceMapRoot
  224. * Type: `String`
  225. * Default: `undefined`
  226. the value will be emitted as `sourceRoot` in the source map information
  227. ## `render` Callback (>= v3.0.0)
  228. node-sass supports standard node style asynchronous callbacks with the signature of `function(err, result)`. In error conditions, the `error` argument is populated with the error object. In success conditions, the `result` object is populated with an object describing the result of the render call.
  229. ### Error Object
  230. * `message` (String) - The error message.
  231. * `line` (Number) - The line number of error.
  232. * `column` (Number) - The column number of error.
  233. * `status` (Number) - The status code.
  234. * `file` (String) - The filename of error. In case `file` option was not set (in favour of `data`), this will reflect the value `stdin`.
  235. ### Result Object
  236. * `css` (Buffer) - The compiled CSS. Write this to a file, or serve it out as needed.
  237. * `map` (Buffer) - The source map
  238. * `stats` (Object) - An object containing information about the compile. It contains the following keys:
  239. * `entry` (String) - The path to the scss file, or `data` if the source was not a file
  240. * `start` (Number) - Date.now() before the compilation
  241. * `end` (Number) - Date.now() after the compilation
  242. * `duration` (Number) - *end* - *start*
  243. * `includedFiles` (Array) - Absolute paths to all related scss files in no particular order.
  244. ### Examples
  245. ```javascript
  246. var sass = require('node-sass');
  247. sass.render({
  248. file: '/path/to/myFile.scss',
  249. data: 'body{background:blue; a{color:black;}}',
  250. importer: function(url, prev, done) {
  251. // url is the path in import as is, which LibSass encountered.
  252. // prev is the previously resolved path.
  253. // done is an optional callback, either consume it or return value synchronously.
  254. // this.options contains this options hash, this.callback contains the node-style callback
  255. someAsyncFunction(url, prev, function(result){
  256. done({
  257. file: result.path, // only one of them is required, see section Special Behaviours.
  258. contents: result.data
  259. });
  260. });
  261. // OR
  262. var result = someSyncFunction(url, prev);
  263. return {file: result.path, contents: result.data};
  264. },
  265. includePaths: [ 'lib/', 'mod/' ],
  266. outputStyle: 'compressed'
  267. }, function(error, result) { // node-style callback from v3.0.0 onwards
  268. if (error) {
  269. console.log(error.status); // used to be "code" in v2x and below
  270. console.log(error.column);
  271. console.log(error.message);
  272. console.log(error.line);
  273. }
  274. else {
  275. console.log(result.css.toString());
  276. console.log(result.stats);
  277. console.log(result.map.toString());
  278. // or better
  279. console.log(JSON.stringify(result.map)); // note, JSON.stringify accepts Buffer too
  280. }
  281. });
  282. // OR
  283. var result = sass.renderSync({
  284. file: '/path/to/file.scss',
  285. data: 'body{background:blue; a{color:black;}}',
  286. outputStyle: 'compressed',
  287. outFile: '/to/my/output.css',
  288. sourceMap: true, // or an absolute or relative (to outFile) path
  289. importer: function(url, prev, done) {
  290. // url is the path in import as is, which LibSass encountered.
  291. // prev is the previously resolved path.
  292. // done is an optional callback, either consume it or return value synchronously.
  293. // this.options contains this options hash
  294. someAsyncFunction(url, prev, function(result){
  295. done({
  296. file: result.path, // only one of them is required, see section Special Behaviours.
  297. contents: result.data
  298. });
  299. });
  300. // OR
  301. var result = someSyncFunction(url, prev);
  302. return {file: result.path, contents: result.data};
  303. }
  304. });
  305. console.log(result.css);
  306. console.log(result.map);
  307. console.log(result.stats);
  308. ```
  309. ### Special behaviours
  310. * In the case that both `file` and `data` options are set, node-sass will give precedence to `data` and use `file` to calculate paths in sourcemaps.
  311. ### Version information (>= v2.0.0)
  312. Both `node-sass` and `libsass` version info is now exposed via the `info` method:
  313. ```javascript
  314. var sass = require('node-sass');
  315. console.log(sass.info);
  316. /*
  317. it will output something like:
  318. node-sass 2.0.1 (Wrapper) [JavaScript]
  319. libsass 3.1.0 (Sass Compiler) [C/C++]
  320. */
  321. ```
  322. Since node-sass >=v3.0.0 LibSass version is determined at run time.
  323. ## Integrations
  324. Listing of community uses of node-sass in build tools and frameworks.
  325. ### Brackets extension
  326. [@jasonsanjose](https://github.com/jasonsanjose) has created a [Brackets](http://brackets.io) extension based on node-sass: <https://github.com/jasonsanjose/brackets-sass>. When editing Sass files, the extension compiles changes on save. The extension also integrates with Live Preview to show Sass changes in the browser without saving or compiling.
  327. ### Brunch plugin
  328. [Brunch](http://brunch.io)'s official sass plugin uses node-sass by default, and automatically falls back to ruby if use of Compass is detected: <https://github.com/brunch/sass-brunch>
  329. ### Connect/Express middleware
  330. Recompile `.scss` files automatically for connect and express based http servers.
  331. This functionality has been moved to [`node-sass-middleware`](https://github.com/sass/node-sass-middleware) in node-sass v1.0.0
  332. ### DocPad Plugin
  333. [@10xLaCroixDrinker](https://github.com/10xLaCroixDrinker) wrote a [DocPad](http://docpad.org/) plugin that compiles `.scss` files using node-sass: <https://github.com/10xLaCroixDrinker/docpad-plugin-nodesass>
  334. ### Duo.js extension
  335. [@stephenway](https://github.com/stephenway) has created an extension that transpiles Sass to CSS using node-sass with [duo.js](http://duojs.org/)
  336. <https://github.com/duojs/sass>
  337. ### Grunt extension
  338. [@sindresorhus](https://github.com/sindresorhus/) has created a set of grunt tasks based on node-sass: <https://github.com/sindresorhus/grunt-sass>
  339. ### Gulp extension
  340. [@dlmanning](https://github.com/dlmanning/) has created a gulp sass plugin based on node-sass: <https://github.com/dlmanning/gulp-sass>
  341. ### Harp
  342. [@sintaxi](https://github.com/sintaxi)’s Harp web server implicitly compiles `.scss` files using node-sass: <https://github.com/sintaxi/harp>
  343. ### Metalsmith plugin
  344. [@stevenschobert](https://github.com/stevenschobert/) has created a metalsmith plugin based on node-sass: <https://github.com/stevenschobert/metalsmith-sass>
  345. ### Meteor plugin
  346. [@fourseven](https://github.com/fourseven) has created a meteor plugin based on node-sass: <https://github.com/fourseven/meteor-scss>
  347. ### Mimosa module
  348. [@dbashford](https://github.com/dbashford) has created a Mimosa module for sass which includes node-sass: <https://github.com/dbashford/mimosa-sass>
  349. ## Example App
  350. There is also an example connect app here: <https://github.com/andrew/node-sass-example>
  351. ## Rebuilding binaries
  352. Node-sass includes pre-compiled binaries for popular platforms, to add a binary for your platform follow these steps:
  353. Check out the project:
  354. ```bash
  355. git clone --recursive https://github.com/sass/node-sass.git
  356. cd node-sass
  357. npm install
  358. node scripts/build -f # use -d switch for debug release
  359. # if succeeded, it will generate and move
  360. # the binary in vendor directory.
  361. ```
  362. ## Command Line Interface
  363. The interface for command-line usage is fairly simplistic at this stage, as seen in the following usage section.
  364. Output will be sent to stdout if the `--output` flag is omitted.
  365. ### Usage
  366. `node-sass [options] <input> [output]`
  367. Or:
  368. `cat <input> | node-sass > output`
  369. Example:
  370. `node-sass src/style.scss dest/style.css`
  371. **Options:**
  372. ```bash
  373. -w, --watch Watch a directory or file
  374. -r, --recursive Recursively watch directories or files
  375. -o, --output Output directory
  376. -x, --omit-source-map-url Omit source map URL comment from output
  377. -i, --indented-syntax Treat data from stdin as sass code (versus scss)
  378. -q, --quiet Suppress log output except on error
  379. -v, --version Prints version info
  380. --output-style CSS output style (nested | expanded | compact | compressed)
  381. --indent-type Indent type for output CSS (space | tab)
  382. --indent-width Indent width; number of spaces or tabs (maximum value: 10)
  383. --linefeed Linefeed style (cr | crlf | lf | lfcr)
  384. --source-comments Include debug info in output
  385. --source-map Emit source map
  386. --source-map-contents Embed include contents in map
  387. --source-map-embed Embed sourceMappingUrl as data URI
  388. --source-map-root Base path, will be emitted in source-map as is
  389. --include-path Path to look for imported files
  390. --follow Follow symlinked directories
  391. --precision The amount of precision allowed in decimal numbers
  392. --error-bell Output a bell character on errors
  393. --importer Path to .js file containing custom importer
  394. --functions Path to .js file containing custom functions
  395. --help Print usage info
  396. ```
  397. The `input` can be either a single `.scss` or `.sass`, or a directory. If the input is a directory the `--output` flag must also be supplied.
  398. Also, note `--importer` takes the (absolute or relative to pwd) path to a js file, which needs to have a default `module.exports` set to the importer function. See our test [fixtures](https://github.com/sass/node-sass/tree/974f93e76ddd08ea850e3e663cfe64bb6a059dd3/test/fixtures/extras) for example.
  399. The `--source-map` option accepts a boolean value, in which case it replaces destination extension with `.css.map`. It also accepts path to `.map` file and even path to the desired directory.
  400. When compiling a directory `--source-map` can either be a boolean value or a directory.
  401. ## Binary configuration parameters
  402. node-sass supports different configuration parameters to change settings related to the sass binary such as binary name, binary path or alternative download path. Following parameters are supported by node-sass:
  403. Variable name | .npmrc parameter | Process argument | Value
  404. -----------------|------------------|--------------------|------
  405. SASS_BINARY_NAME | sass_binary_name | --sass-binary-name | path
  406. SASS_BINARY_SITE | sass_binary_site | --sass-binary-site | URL
  407. SASS_BINARY_PATH | sass_binary_path | --sass-binary-path | path
  408. SASS_BINARY_DIR | sass_binary_dir | --sass-binary-dir | path
  409. These parameters can be used as environment variable:
  410. * E.g. `export SASS_BINARY_SITE=http://example.com/`
  411. As local or global [.npmrc](https://docs.npmjs.com/misc/config) configuration file:
  412. * E.g. `sass_binary_site=http://example.com/`
  413. As a process argument:
  414. * E.g. `npm install node-sass --sass-binary-site=http://example.com/`
  415. ## Post-install Build
  416. Install runs only two Mocha tests to see if your machine can use the pre-built [LibSass] which will save some time during install. If any tests fail it will build from source.
  417. ## Maintainers
  418. This module is brought to you and maintained by the following people:
  419. * Michael Mifsud - Project Lead ([Github](https://github.com/xzyfer) / [Twitter](https://twitter.com/xzyfer))
  420. * Andrew Nesbitt ([Github](https://github.com/andrew) / [Twitter](https://twitter.com/teabass))
  421. * Dean Mao ([Github](https://github.com/deanmao) / [Twitter](https://twitter.com/deanmao))
  422. * Brett Wilkins ([Github](https://github.com/bwilkins) / [Twitter](https://twitter.com/bjmaz))
  423. * Keith Cirkel ([Github](https://github.com/keithamus) / [Twitter](https://twitter.com/Keithamus))
  424. * Laurent Goderre ([Github](https://github.com/laurentgoderre) / [Twitter](https://twitter.com/laurentgoderre))
  425. * Nick Schonning ([Github](https://github.com/nschonni) / [Twitter](https://twitter.com/nschonni))
  426. * Adeel Mujahid ([Github](https://github.com/am11) / [Twitter](https://twitter.com/adeelbm))
  427. ## Contributors
  428. We <3 our contributors! A special thanks to all those who have clocked in some dev time on this project, we really appreciate your hard work. You can find [a full list of those people here.](https://github.com/sass/node-sass/graphs/contributors)
  429. ### Note on Patches/Pull Requests
  430. Check out our [Contributing guide](/.github/CONTRIBUTING.md)
  431. ## Copyright
  432. Copyright (c) 2015 Andrew Nesbitt. See [LICENSE](https://github.com/sass/node-sass/blob/master/LICENSE) for details.
  433. [LibSass]: https://github.com/sass/libsass